summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_abc.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_abc.py')
-rw-r--r--Lib/test/test_abc.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/Lib/test/test_abc.py b/Lib/test/test_abc.py
index a04b271..e6c8415 100644
--- a/Lib/test/test_abc.py
+++ b/Lib/test/test_abc.py
@@ -146,13 +146,6 @@ class TestABC(unittest.TestCase):
C()
self.assertEqual(B.counter, 1)
- def test_error_on_subclass(self):
- class A(abc.ABCMeta):
- pass
- class B:
- pass
- self.assertRaises(TypeError, A.register, B)
-
def test_main():
test_support.run_unittest(TestABC)