summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-01-04 16:52:40 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-01-04 16:52:40 (GMT)
commit1d54b114c5f0400710c425a30555a5cb7cc0db71 (patch)
treed3147dc3d1e6abe7447a62a228c5c00ebe077971
parent21fe7213455748fa321333d67e3542848bec9630 (diff)
downloadcpython-1d54b114c5f0400710c425a30555a5cb7cc0db71.zip
cpython-1d54b114c5f0400710c425a30555a5cb7cc0db71.tar.gz
cpython-1d54b114c5f0400710c425a30555a5cb7cc0db71.tar.bz2
Issue #29156: Remove superfluous pow test.
test_powlong is the same as test_powint. Patch by Lukas Schwaighofer.
-rw-r--r--Lib/test/test_pow.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_pow.py b/Lib/test/test_pow.py
index 6feac40..ba608fb 100644
--- a/Lib/test/test_pow.py
+++ b/Lib/test/test_pow.py
@@ -59,9 +59,6 @@ class PowTest(unittest.TestCase):
def test_powint(self):
self.powtest(int)
- def test_powlong(self):
- self.powtest(int)
-
def test_powfloat(self):
self.powtest(float)