diff options
author | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-03-22 01:02:23 +0000 |
---|---|---|
committer | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-03-22 01:02:23 +0000 |
commit | db003cb3d17ecac870d6af1b2c408f887a93f2e3 (patch) | |
tree | 8d2a8d1e7d7e6f4baff38350d108faaf072b037a /Lib/test/test_unittest.py | |
parent | 1b9e95339de2f592b48c7640857956e28f2ce859 (diff) | |
download | cpython-git-db003cb3d17ecac870d6af1b2c408f887a93f2e3.tar.gz |
Fix failing test committed by accident.
Diffstat (limited to 'Lib/test/test_unittest.py')
-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 596236a6a1..f003208a0a 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 |