From e7fef52f9865b29785be04d1dc7d9b0b52f3c085 Mon Sep 17 00:00:00 2001 From: Steven D'Aprano Date: Tue, 9 Aug 2016 13:19:48 +1000 Subject: [PATCH] Tighten up test of harmonic mean on a single value. --- Lib/test/test_statistics.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Lib/test/test_statistics.py b/Lib/test/test_statistics.py index 1542d6460a..4b3fd364a7 100644 --- a/Lib/test/test_statistics.py +++ b/Lib/test/test_statistics.py @@ -1469,10 +1469,7 @@ class TestHarmonicMean(NumericTestCase, AverageMixin, UnivariateTypeMixin): def test_singleton_lists(self): # Test that harmonic mean([x]) returns (approximately) x. for x in range(1, 101): - if x in (49, 93, 98, 99): - self.assertApproxEqual(self.func([x]), x, tol=2e-14) - else: - self.assertEqual(self.func([x]), x) + self.assertEqual(self.func([x]), x) def test_decimals_exact(self): # Test harmonic mean with some carefully chosen Decimals. -- 2.40.0