From db003cb3d17ecac870d6af1b2c408f887a93f2e3 Mon Sep 17 00:00:00 2001 From: Michael Foord Date: Mon, 22 Mar 2010 01:02:23 +0000 Subject: Fix failing test committed by accident. --- Lib/test/test_unittest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v0.12