From 0da0db8698b731156ac0a4928d217060ab8c6d11 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Sat, 7 May 2011 15:19:34 -0700 Subject: Fix cut and paste error. --- Lib/test/test_heapq.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- cgit v1.2.1