]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #29156: Remove superfluous pow test.
authorSerhiy Storchaka <storchaka@gmail.com>
Wed, 4 Jan 2017 16:52:40 +0000 (18:52 +0200)
committerSerhiy Storchaka <storchaka@gmail.com>
Wed, 4 Jan 2017 16:52:40 +0000 (18:52 +0200)
test_powlong is the same as test_powint.
Patch by Lukas Schwaighofer.

Lib/test/test_pow.py

index 6feac409bda2d232a56aee8fffca55ba7784e498..ba608fbb3ea6880af4bc55e8873ec8321c507fa0 100644 (file)
@@ -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)