summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Lib/test/test_math.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py
index f29bddd8de..6d06fef4cd 100644
--- a/Lib/test/test_math.py
+++ b/Lib/test/test_math.py
@@ -955,7 +955,7 @@ class MathTests(unittest.TestCase):
continue
if not math.isnan(expected) and not math.isnan(got):
diff_ulps = to_ulps(expected) - to_ulps(got)
- if diff_ulps <= ALLOWED_ERROR:
+ if abs(diff_ulps) <= ALLOWED_ERROR:
continue
if isinstance(got, str) and isinstance(expected, str):