summaryrefslogtreecommitdiff
path: root/tests/float/math_domain.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/float/math_domain.py')
-rw-r--r--tests/float/math_domain.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/float/math_domain.py b/tests/float/math_domain.py
index 2d4670f75..e63628cf5 100644
--- a/tests/float/math_domain.py
+++ b/tests/float/math_domain.py
@@ -39,8 +39,8 @@ for name, f, args in (
# double argument functions
for name, f, args in (
("pow", math.pow, ((0, 2), (-1, 2), (0, -1), (-1, 2.3))),
- ("fmod", math.fmod, ((1.2, inf), (1.2, 0), (inf, 1.2))),
- ("atan2", math.atan2, ((0, 0),)),
+ ("fmod", math.fmod, ((1.2, inf), (1.2, -inf), (1.2, 0), (inf, 1.2))),
+ ("atan2", math.atan2, ((0, 0), (-inf, inf), (-inf, -inf), (inf, -inf))),
("copysign", math.copysign, ()),
):
for x in args + ((0, inf), (inf, 0), (inf, inf), (inf, nan), (nan, inf), (nan, nan)):