Skip to content

Commit d434a40

Browse files
committed
Fix second self-test (typo)
1 parent bc86ed2 commit d434a40

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_annotationlib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1893,7 +1893,7 @@ def two(_) -> C1 | C2:
18931893

18941894
self.assertIsNot(A.two_f_ga1.__cell__, A.two_f_ga2.__cell__)
18951895
self.assertIsInstance(A.two_f_ga1.__cell__, dict)
1896-
self.assertIsInstance(A.two_f_ga1.__cell__, dict)
1896+
self.assertIsInstance(A.two_f_ga2.__cell__, dict)
18971897

18981898
self.assertEqual(A.two_f_ga1, A.two_f_ga2)
18991899
self.assertEqual(hash(A.two_f_ga1), hash(A.two_f_ga2))

0 commit comments

Comments
 (0)