diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-01-04 16:52:40 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-01-04 16:52:40 (GMT) |
commit | 1d54b114c5f0400710c425a30555a5cb7cc0db71 (patch) | |
tree | d3147dc3d1e6abe7447a62a228c5c00ebe077971 /Lib | |
parent | 21fe7213455748fa321333d67e3542848bec9630 (diff) | |
download | cpython-1d54b114c5f0400710c425a30555a5cb7cc0db71.zip cpython-1d54b114c5f0400710c425a30555a5cb7cc0db71.tar.gz cpython-1d54b114c5f0400710c425a30555a5cb7cc0db71.tar.bz2 |
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.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_pow.py b/Lib/test/test_pow.py index 6feac40..ba608fb 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) |