From 0988646e7026b4409def33e9c5705840c45c5fb4 Mon Sep 17 00:00:00 2001 From: "Joe S. Boyle" Date: Sun, 5 Mar 2023 14:31:26 +0000 Subject: [PATCH] Fix unused classes in a typing test --- Lib/test/test_typing.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_typing.py b/Lib/test/test_typing.py index 96496ec9279e3f..2eeaf91d78d8f3 100644 --- a/Lib/test/test_typing.py +++ b/Lib/test/test_typing.py @@ -2921,8 +2921,8 @@ 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):