Commit 1d54b114 authored by Serhiy Storchaka's avatar Serhiy Storchaka

Issue #29156: Remove superfluous pow test.

test_powlong is the same as test_powint.
Patch by Lukas Schwaighofer.
parent 21fe7213
...@@ -59,9 +59,6 @@ class PowTest(unittest.TestCase): ...@@ -59,9 +59,6 @@ class PowTest(unittest.TestCase):
def test_powint(self): def test_powint(self):
self.powtest(int) self.powtest(int)
def test_powlong(self):
self.powtest(int)
def test_powfloat(self): def test_powfloat(self):
self.powtest(float) self.powtest(float)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment