From: Raymond Hettinger Date: Sat, 7 May 2011 22:19:34 +0000 (-0700) Subject: Fix cut and paste error. X-Git-Tag: v2.7.2rc1~58 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1bd816e58e418394005a282def3d7ed301aa4f76;p=python Fix cut and paste error. --- 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):