From: Benjamin Peterson Date: Sun, 29 Sep 2013 14:50:15 +0000 (-0400) Subject: combine two tests to avoid duplicate names (closes #19116) X-Git-Tag: v3.4.0a4~310^2~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=db0601f8716cfd035aa0957a63c6ddaf1fc03e93;p=thirdparty%2FPython%2Fcpython.git combine two tests to avoid duplicate names (closes #19116) --- diff --git a/Lib/test/test_complex.py b/Lib/test/test_complex.py index 6b34ddc0a68a..1bf409798b99 100644 --- a/Lib/test/test_complex.py +++ b/Lib/test/test_complex.py @@ -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)