Kaydet (Commit) f8c111d4 authored tarafından Berker Peksag's avatar Berker Peksag

Issue #16056: Rename test method in test_statistics to avoid conflict.

üst 5e193ac0
......@@ -991,14 +991,14 @@ class SumSpecialValues(NumericTestCase):
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]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment