Skip to content

Commit 3b936a5

Browse files
committed
tests: Fix math_fun_special test so it passes with single prec float.
1 parent da3dffa commit 3b936a5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/float/math_fun_special.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@
3131
print(function_name)
3232
for value in test_vals:
3333
try:
34-
print("{:.5g}".format(function(value)))
34+
print("{:.4g}".format(function(value)))
3535
except ValueError as e:
3636
print(str(e))

0 commit comments

Comments
 (0)