diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-09-29 14:50:15 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-09-29 14:50:15 (GMT) |
commit | db0601f8716cfd035aa0957a63c6ddaf1fc03e93 (patch) | |
tree | e8c4dcffd7db9987a7ce850351bc03431d93626f /Lib/test/test_complex.py | |
parent | e8c8a592e769196d3b15e85ff63fca04c670d391 (diff) | |
download | cpython-db0601f8716cfd035aa0957a63c6ddaf1fc03e93.zip cpython-db0601f8716cfd035aa0957a63c6ddaf1fc03e93.tar.gz cpython-db0601f8716cfd035aa0957a63c6ddaf1fc03e93.tar.bz2 |
combine two tests to avoid duplicate names (closes #19116)
Diffstat (limited to 'Lib/test/test_complex.py')
-rw-r--r-- | Lib/test/test_complex.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_complex.py b/Lib/test/test_complex.py index 6b34ddc..1bf4097 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) |