From: Michael Foord Date: Mon, 22 Mar 2010 01:02:23 +0000 (+0000) Subject: Fix failing test committed by accident. X-Git-Tag: v2.7b1~265 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=db003cb3d17ecac870d6af1b2c408f887a93f2e3;p=python Fix failing test committed by accident. --- 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