Fix cut and paste error.

This commit is contained in:
Raymond Hettinger 2011-05-07 15:19:34 -07:00
parent 8dd0624660
commit 1bd816e58e
1 changed files with 1 additions and 1 deletions

View File

@ -349,7 +349,7 @@ class TestErrorHandling(unittest.TestCase):
self.assertRaises(TypeError, f, 2, N(s))
self.assertRaises(ZeroDivisionError, f, 2, E(s))
class TestErrorHandling_Python(unittest.TestCase):
class TestErrorHandling_Python(TestErrorHandling):
module = py_heapq
class TestErrorHandling_C(TestErrorHandling):