[Python-checkins] cpython (merge 3.6 -> default): Issue #29156: Remove superfluous pow test.

serhiy.storchaka python-checkins at python.org
Wed Jan 4 11:54:32 EST 2017


https://hg.python.org/cpython/rev/29d28f1bdc7c
changeset:   105998:29d28f1bdc7c
parent:      105994:ee1390c9b585
parent:      105997:ef3440585a17
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Wed Jan 04 18:53:28 2017 +0200
summary:
  Issue #29156: Remove superfluous pow test.
test_powlong is the same as test_powint.
Patch by Lukas Schwaighofer.

files:
  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
--- a/Lib/test/test_pow.py
+++ b/Lib/test/test_pow.py
@@ -59,9 +59,6 @@
     def test_powint(self):
         self.powtest(int)
 
-    def test_powlong(self):
-        self.powtest(int)
-
     def test_powfloat(self):
         self.powtest(float)
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list