summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_genericclass.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_genericclass.py')
-rw-r--r--Lib/test/test_genericclass.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_genericclass.py b/Lib/test/test_genericclass.py
index d8bb37f..aece757 100644
--- a/Lib/test/test_genericclass.py
+++ b/Lib/test/test_genericclass.py
@@ -98,7 +98,7 @@ class TestMROEntry(unittest.TestCase):
return ()
d = C_too_few()
with self.assertRaises(TypeError):
- class D(d): ...
+ class E(d): ...
def test_mro_entry_errors_2(self):
class C_not_callable:
@@ -111,7 +111,7 @@ class TestMROEntry(unittest.TestCase):
return object
c = C_not_tuple()
with self.assertRaises(TypeError):
- class D(c): ...
+ class E(c): ...
def test_mro_entry_metaclass(self):
meta_args = []