Skip to content

Commit 7517437

Browse files
authoredMar 12, 2022
bpo-46644: Fix test_typing test broken by GH-31151 due to a merge race (GH-31833)
1 parent 870b22b commit 7517437

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎Lib/test/test_typing.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ def test_bad_var_substitution(self):
377377
T = TypeVar('T')
378378
P = ParamSpec("P")
379379
bad_args = (
380-
42, ..., [int], (), (int, str), Union,
380+
(), (int, str), Union,
381381
Generic, Generic[T], Protocol, Protocol[T],
382382
Final, Final[int], ClassVar, ClassVar[int],
383383
)

0 commit comments

Comments
 (0)
Please sign in to comment.