Commit 3b936a5f authored by Damien George's avatar Damien George

tests: Fix math_fun_special test so it passes with single prec float.

parent da3dffa7
......@@ -31,6 +31,6 @@ for function_name, function, test_vals in functions:
print(function_name)
for value in test_vals:
try:
print("{:.5g}".format(function(value)))
print("{:.4g}".format(function(value)))
except ValueError as e:
print(str(e))
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