From 75174371e6cac935b598a68c1113f6db1e0d6ed8 Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Fri, 11 Mar 2022 18:17:45 -0800 Subject: bpo-46644: Fix test_typing test broken by GH-31151 due to a merge race (GH-31833) --- Lib/test/test_typing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_typing.py b/Lib/test/test_typing.py index c619042..b212b52 100644 --- a/Lib/test/test_typing.py +++ b/Lib/test/test_typing.py @@ -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], ) -- cgit v0.12