Skip to content

Commit fdfc7d4

Browse files
Update Lib/test/test_typing.py
Co-authored-by: Alex Waygood <[email protected]>
1 parent cd4d211 commit fdfc7d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_typing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5284,8 +5284,8 @@ class Node(Generic[T]): ...
52845284
typing.Iterable[Any], typing.Iterable[int], typing.Dict[int, str],
52855285
typing.Dict[T, Any], ClassVar[int], ClassVar[List[T]], Tuple['T', 'T'],
52865286
Union['T', int], List['T'], typing.Mapping['T', int],
5287-
Union[b"x", b"y"]]
5288-
for t in things + [Any]:
5287+
Union[b"x", b"y"], Any]
5288+
for t in things:
52895289
with self.subTest(thing=t):
52905290
self.assertEqual(t, copy(t))
52915291
self.assertEqual(t, deepcopy(t))

0 commit comments

Comments
 (0)