[Python-checkins] cpython (3.4): Issue #16056: Rename test method in test_statistics to avoid conflict.

berker.peksag python-checkins at python.org
Wed Sep 24 14:03:57 CEST 2014


https://hg.python.org/cpython/rev/6d44906344f4
changeset:   92561:6d44906344f4
branch:      3.4
parent:      92559:7ea2153eae87
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Wed Sep 24 15:03:25 2014 +0300
summary:
  Issue #16056: Rename test method in test_statistics to avoid conflict.

files:
  Lib/test/test_statistics.py |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Lib/test/test_statistics.py b/Lib/test/test_statistics.py
--- a/Lib/test/test_statistics.py
+++ b/Lib/test/test_statistics.py
@@ -991,14 +991,14 @@
         result = statistics._sum([1, 2, inf, 3, -inf, 4])
         self.assertTrue(math.isnan(result))
 
-    def test_decimal_mismatched_infs_to_nan(self):
+    def test_decimal_extendedcontext_mismatched_infs_to_nan(self):
         # Test adding Decimal INFs with opposite sign returns NAN.
         inf = Decimal('inf')
         data = [1, 2, inf, 3, -inf, 4]
         with decimal.localcontext(decimal.ExtendedContext):
             self.assertTrue(math.isnan(statistics._sum(data)))
 
-    def test_decimal_mismatched_infs_to_nan(self):
+    def test_decimal_basiccontext_mismatched_infs_to_nan(self):
         # Test adding Decimal INFs with opposite sign raises InvalidOperation.
         inf = Decimal('inf')
         data = [1, 2, inf, 3, -inf, 4]

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


More information about the Python-checkins mailing list