From: Serhiy Storchaka Date: Wed, 4 Jan 2017 16:52:40 +0000 (+0200) Subject: Issue #29156: Remove superfluous pow test. X-Git-Tag: v3.6.1rc1~211^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1d54b114c5f0400710c425a30555a5cb7cc0db71;p=thirdparty%2FPython%2Fcpython.git Issue #29156: Remove superfluous pow test. test_powlong is the same as test_powint. Patch by Lukas Schwaighofer. --- diff --git a/Lib/test/test_pow.py b/Lib/test/test_pow.py index 6feac409bda2..ba608fbb3ea6 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)