Commit 7c88cdda authored by Damien George's avatar Damien George

tests/float/math_domain.py: Tweak test to also pass with obj-repr-C.

Signed-off-by: default avatarDamien George <damien@micropython.org>
parent a7e2a6d9
......@@ -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:
......
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