Kaydet (Commit) 0badeef9 authored tarafından Mark Dickinson's avatar Mark Dickinson

Remove unnecessary double negative

üst 6ab635a4
......@@ -371,7 +371,7 @@ class MathTests(unittest.TestCase):
@unittest.skipUnless(float.__getformat__("double").startswith("IEEE"),
"test requires IEEE 754 doubles")
@unittest.skipUnless(not HAVE_DOUBLE_ROUNDING,
@unittest.skipIf(HAVE_DOUBLE_ROUNDING,
"fsum is not exact on machines with double rounding")
def testFsum(self):
# math.fsum relies on exact rounding for correct operation.
......
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