Fix failing test committed by accident.
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 Foo(unittest.TestCase):
     def runTest(self): pass
-    def test1(self): 1/0
+    def test1(self): pass
 
 class Bar(Foo):
     def test2(self): pass