bpo-46644: Fix test_typing test broken by GH-31151 due to a merge race (GH-31833)

This commit is contained in:
Jelle Zijlstra 2022-03-11 18:17:45 -08:00 committed by GitHub
parent 870b22b9c4
commit 75174371e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -377,7 +377,7 @@ class TypeVarTests(BaseTestCase):
T = TypeVar('T')
P = ParamSpec("P")
bad_args = (
42, ..., [int], (), (int, str), Union,
(), (int, str), Union,
Generic, Generic[T], Protocol, Protocol[T],
Final, Final[int], ClassVar, ClassVar[int],
)