summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--tests/float/math_domain.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/float/math_domain.py b/tests/float/math_domain.py
index 26e883ea64..b1273c6c11 100644
--- a/tests/float/math_domain.py
+++ b/tests/float/math_domain.py
@@ -28,7 +28,7 @@ for name, f in (
("radians", math.radians),
("degrees", math.degrees),
):
- for x in (0, 1, 1.1, -1, -1.1, inf, -inf, nan):
+ for x in (0, 1, 1.12, -1, -1.12, inf, -inf, nan):
try:
ans = "%.4f" % f(x)
except ValueError: