summaryrefslogtreecommitdiff
path: root/Lib
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-01-04 18:52:40 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2017-01-04 18:52:40 +0200
commitb9c2f1c432a8cb05f00fbfc05f7d3b1939485f5d (patch)
treed7be4f081f820d9cae1a50f98631b192ee90caa8 /Lib
parentfed4520f4d2429f2ce39c730858fc284b0f30e7b (diff)
downloadcpython-b9c2f1c432a8cb05f00fbfc05f7d3b1939485f5d.tar.gz
Issue #29156: Remove superfluous pow test.
test_powlong is the same as test_powint. Patch by Lukas Schwaighofer.
Diffstat (limited to 'Lib')
-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 6feac409bd..ba608fbb3e 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)