From a7a7d5626feaee14c02605913155c8de273db33b Mon Sep 17 00:00:00 2001 From: "Joe S. Boyle" Date: Sun, 5 Mar 2023 14:57:54 +0000 Subject: [PATCH] Fix unused classes in test case --- src/test_typing_extensions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test_typing_extensions.py b/src/test_typing_extensions.py index 208382a0..ad32e0e2 100644 --- a/src/test_typing_extensions.py +++ b/src/test_typing_extensions.py @@ -1859,8 +1859,8 @@ def __init__(self): class DI: def __init__(self): self.x = None - self.assertIsInstance(C(), P) - self.assertIsInstance(D(), P) + self.assertIsInstance(CI(), P) + self.assertIsInstance(DI(), P) def test_protocols_in_unions(self): class P(Protocol):