diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-01-04 16:53:28 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-01-04 16:53:28 (GMT) |
commit | 150257e31370ad5a6394ac31ecb8dad1370f4048 (patch) | |
tree | 74d9bbb6136f7a5519c4f0f2996cba0ce9c2ef42 | |
parent | 11edf29025d86ce9bca56bba88004e4930a717af (diff) | |
parent | 4fd9cc14b41a9c6979aa9cfb479ce9713380e906 (diff) | |
download | cpython-150257e31370ad5a6394ac31ecb8dad1370f4048.zip cpython-150257e31370ad5a6394ac31ecb8dad1370f4048.tar.gz cpython-150257e31370ad5a6394ac31ecb8dad1370f4048.tar.bz2 |
Issue #29156: Remove superfluous pow test.
test_powlong is the same as test_powint.
Patch by Lukas Schwaighofer.
-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 ce99fe6..cac1ae5 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) |