summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-05-07 15:19:34 -0700
committerRaymond Hettinger <python@rcn.com>2011-05-07 15:19:34 -0700
commit0da0db8698b731156ac0a4928d217060ab8c6d11 (patch)
tree9584487f041d4fb6a2e1c19ae8dd369d5278e071
parent672c2cc8124b7b4b39c0bfc92e62b819c742e642 (diff)
downloadcpython-0da0db8698b731156ac0a4928d217060ab8c6d11.tar.gz
Fix cut and paste error.
-rw-r--r--Lib/test/test_heapq.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_heapq.py b/Lib/test/test_heapq.py
index f0753cf385..fb533dfba2 100644
--- a/Lib/test/test_heapq.py
+++ b/Lib/test/test_heapq.py
@@ -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):