commit | db003cb3d17ecac870d6af1b2c408f887a93f2e3 | [log] [tgz] |
---|---|---|
author | Michael Foord <fuzzyman@voidspace.org.uk> | Mon Mar 22 01:02:23 2010 +0000 |
committer | Michael Foord <fuzzyman@voidspace.org.uk> | Mon Mar 22 01:02:23 2010 +0000 |
tree | 8d2a8d1e7d7e6f4baff38350d108faaf072b037a | |
parent | 1b9e95339de2f592b48c7640857956e28f2ce859 [diff] |
Fix failing test committed by accident.
diff --git a/Lib/test/test_unittest.py b/Lib/test/test_unittest.py index 596236a..f003208 100644 --- a/Lib/test/test_unittest.py +++ b/Lib/test/test_unittest.py
@@ -2196,7 +2196,7 @@ class Foo(unittest.TestCase): def runTest(self): pass - def test1(self): 1/0 + def test1(self): pass class Bar(Foo): def test2(self): pass