Skip to content

Commit a0858e6

Browse files
authored
Fix unused classes in test case (#122)
1 parent 677b446 commit a0858e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test_typing_extensions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1859,8 +1859,8 @@ def __init__(self):
18591859
class DI:
18601860
def __init__(self):
18611861
self.x = None
1862-
self.assertIsInstance(C(), P)
1863-
self.assertIsInstance(D(), P)
1862+
self.assertIsInstance(CI(), P)
1863+
self.assertIsInstance(DI(), P)
18641864

18651865
def test_protocols_in_unions(self):
18661866
class P(Protocol):

0 commit comments

Comments
 (0)