summaryrefslogtreecommitdiffstatshomepage
path: root/tests/float/math_fun.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/float/math_fun.py')
-rw-r--r--tests/float/math_fun.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/float/math_fun.py b/tests/float/math_fun.py
index 16aec76f92..94411a36bd 100644
--- a/tests/float/math_fun.py
+++ b/tests/float/math_fun.py
@@ -59,6 +59,7 @@ binary_functions = [('copysign', copysign, [(23., 42.), (-23., 42.), (23., -42.)
('atan2', atan2, ((1., 0.), (0., 1.), (2., 0.5), (-3., 5.), (-3., -4.),)),
('fmod', fmod, ((1., 1.), (0., 1.), (2., 0.5), (-3., 5.), (-3., -4.),)),
('ldexp', ldexp, ((1., 0), (0., 1), (2., 2), (3., -2), (-3., -4),)),
+ ('log', log, ((2., 2.), (3., 2.), (4., 5.))),
]
for function_name, function, test_vals in binary_functions: