diff --git a/tests/float/math_fun_special.py b/tests/float/math_fun_special.py index 00336efc4a3c2ccb482b0cd21411dc10b5c8598d..32249b423472fbd9c80cbede2b0e88193be93c03 100644 --- a/tests/float/math_fun_special.py +++ b/tests/float/math_fun_special.py @@ -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))