diff options
Diffstat (limited to 'tests/float/math_fun_bool.py')
-rw-r--r-- | tests/float/math_fun_bool.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/float/math_fun_bool.py b/tests/float/math_fun_bool.py index 30ab14a522..6e9af0dd39 100644 --- a/tests/float/math_fun_bool.py +++ b/tests/float/math_fun_bool.py @@ -6,8 +6,7 @@ except ImportError: print("SKIP") raise SystemExit -test_values = [1, 0, -1, 1.0, 0.0, -1.0, float('NaN'), float('Inf'), - -float('NaN'), -float('Inf')] +test_values = [1, 0, -1, 1.0, 0.0, -1.0, float("NaN"), float("Inf"), -float("NaN"), -float("Inf")] functions = [isfinite, isnan, isinf] |