summaryrefslogtreecommitdiff
path: root/Lib/test/test_pow.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-01-04 18:53:00 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2017-01-04 18:53:00 +0200
commit4fd9cc14b41a9c6979aa9cfb479ce9713380e906 (patch)
tree60e48b949b8b8ef2cc614ebd3be2fae2148354d9 /Lib/test/test_pow.py
parent51b90d28e21293cbb6763c26ea88de45508c2de9 (diff)
parent1d54b114c5f0400710c425a30555a5cb7cc0db71 (diff)
downloadcpython-git-4fd9cc14b41a9c6979aa9cfb479ce9713380e906.tar.gz
Issue #29156: Remove superfluous pow test.
test_powlong is the same as test_powint. Patch by Lukas Schwaighofer.
Diffstat (limited to 'Lib/test/test_pow.py')
-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 ce99fe6410..cac1ae5ea2 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)