]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
combine two tests to avoid duplicate names (closes #19116)
authorBenjamin Peterson <benjamin@python.org>
Sun, 29 Sep 2013 14:50:15 +0000 (10:50 -0400)
committerBenjamin Peterson <benjamin@python.org>
Sun, 29 Sep 2013 14:50:15 +0000 (10:50 -0400)
Lib/test/test_complex.py

index 6b34ddc0a68a6813110b0790841e6a1409d52c90..1bf409798b9904f7ae3ae900bc0425a982fc0977 100644 (file)
@@ -101,7 +101,6 @@ class ComplexTest(unittest.TestCase):
         # FIXME: The following currently crashes on Alpha
         # self.assertRaises(OverflowError, pow, 1e200+1j, 1e200+1j)
 
-    def test_truediv(self):
         self.assertAlmostEqual(complex.__truediv__(2+0j, 1+1j), 1-1j)
         self.assertRaises(ZeroDivisionError, complex.__truediv__, 1+1j, 0+0j)