diff options
| author | Raymond Hettinger <python@rcn.com> | 2011-05-07 22:19:34 (GMT) |
|---|---|---|
| committer | Raymond Hettinger <python@rcn.com> | 2011-05-07 22:19:34 (GMT) |
| commit | 1bd816e58e418394005a282def3d7ed301aa4f76 (patch) | |
| tree | 86d8279627b9741d0f6709aea98860ffb5097527 /Lib/test/test_heapq.py | |
| parent | 8dd06246603ace11ee2c80d3e40b42d98009dcb1 (diff) | |
| download | cpython-1bd816e58e418394005a282def3d7ed301aa4f76.zip cpython-1bd816e58e418394005a282def3d7ed301aa4f76.tar.gz cpython-1bd816e58e418394005a282def3d7ed301aa4f76.tar.bz2 | |
Fix cut and paste error.
Diffstat (limited to 'Lib/test/test_heapq.py')
| -rw-r--r-- | Lib/test/test_heapq.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_heapq.py b/Lib/test/test_heapq.py index f0753cf..fb533df 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): |
