diff options
author | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-03-22 01:02:23 (GMT) |
---|---|---|
committer | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-03-22 01:02:23 (GMT) |
commit | db003cb3d17ecac870d6af1b2c408f887a93f2e3 (patch) | |
tree | 8d2a8d1e7d7e6f4baff38350d108faaf072b037a | |
parent | 1b9e95339de2f592b48c7640857956e28f2ce859 (diff) | |
download | cpython-db003cb3d17ecac870d6af1b2c408f887a93f2e3.zip cpython-db003cb3d17ecac870d6af1b2c408f887a93f2e3.tar.gz cpython-db003cb3d17ecac870d6af1b2c408f887a93f2e3.tar.bz2 |
Fix failing test committed by accident.
-rw-r--r-- | Lib/test/test_unittest.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 Test_OldTestResult(unittest.TestCase): class Foo(unittest.TestCase): def runTest(self): pass - def test1(self): 1/0 + def test1(self): pass class Bar(Foo): def test2(self): pass |