Issue #29156: Remove superfluous pow test.

test_powlong is the same as test_powint.
Patch by Lukas Schwaighofer.
This commit is contained in:
Serhiy Storchaka 2017-01-04 18:53:28 +02:00
commit 150257e313
1 changed files with 0 additions and 3 deletions

View 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)