Skip to content

Commit f7a2317

Browse files
committed
add tests for log10
1 parent cbe4f43 commit f7a2317

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

integration_tests/test_cmath.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from cmath import (exp, log, sqrt, acos, asin, atan, cos, sin, tan,
1+
from cmath import (exp, log, log10, sqrt, acos, asin, atan, cos, sin, tan,
22
acosh, asinh, atanh, cosh, sinh, tanh)
33
from ltypes import c64
44

@@ -9,6 +9,7 @@ def test_power_logarithmic():
99
y = exp(x)
1010
y = log(x)
1111
y = sqrt(x)
12+
y = log10(x)
1213

1314

1415
def test_trigonometric():

0 commit comments

Comments
 (0)