Fix failing test committed by accident.

This commit is contained in:
Michael Foord 2010-03-22 01:02:23 +00:00
parent 1b9e95339d
commit db003cb3d1

View file

@ -2196,7 +2196,7 @@ class Test_OldTestResult(unittest.TestCase):
class Foo(unittest.TestCase): class Foo(unittest.TestCase):
def runTest(self): pass def runTest(self): pass
def test1(self): 1/0 def test1(self): pass
class Bar(Foo): class Bar(Foo):
def test2(self): pass def test2(self): pass