@@ -12,7 +12,7 @@ def acos_func(x):
1212
1313
1414def test_acos ():
15- truth = np .acos (ilist .IList ([0.42 , 0.87 , 0.32 ], elem = types .Float ))
15+ truth = np .arccos (ilist .IList ([0.42 , 0.87 , 0.32 ], elem = types .Float ))
1616 out = acos_func (ilist .IList ([0.42 , 0.87 , 0.32 ], elem = types .Float ))
1717 assert isinstance (out , ilist .IList )
1818 assert out .elem == types .Float
@@ -25,7 +25,7 @@ def asin_func(x):
2525
2626
2727def test_asin ():
28- truth = np .asin (ilist .IList ([0.42 , 0.87 , 0.32 ], elem = types .Float ))
28+ truth = np .arcsin (ilist .IList ([0.42 , 0.87 , 0.32 ], elem = types .Float ))
2929 out = asin_func (ilist .IList ([0.42 , 0.87 , 0.32 ], elem = types .Float ))
3030 assert isinstance (out , ilist .IList )
3131 assert out .elem == types .Float
@@ -38,7 +38,7 @@ def asinh_func(x):
3838
3939
4040def test_asinh ():
41- truth = np .asinh (ilist .IList ([0.42 , 0.87 , 0.32 ], elem = types .Float ))
41+ truth = np .arcsinh (ilist .IList ([0.42 , 0.87 , 0.32 ], elem = types .Float ))
4242 out = asinh_func (ilist .IList ([0.42 , 0.87 , 0.32 ], elem = types .Float ))
4343 assert isinstance (out , ilist .IList )
4444 assert out .elem == types .Float
@@ -51,7 +51,7 @@ def atan_func(x):
5151
5252
5353def test_atan ():
54- truth = np .atan (ilist .IList ([0.42 , 0.87 , 0.32 ], elem = types .Float ))
54+ truth = np .arctan (ilist .IList ([0.42 , 0.87 , 0.32 ], elem = types .Float ))
5555 out = atan_func (ilist .IList ([0.42 , 0.87 , 0.32 ], elem = types .Float ))
5656 assert isinstance (out , ilist .IList )
5757 assert out .elem == types .Float
@@ -64,7 +64,7 @@ def atan2_func(y, x):
6464
6565
6666def test_atan2 ():
67- truth = np .atan2 (
67+ truth = np .arctan2 (
6868 ilist .IList ([0.42 , 0.87 , 0.32 ], elem = types .Float ),
6969 ilist .IList ([0.42 , 0.87 , 0.32 ], elem = types .Float ),
7070 )
@@ -83,7 +83,7 @@ def atanh_func(x):
8383
8484
8585def test_atanh ():
86- truth = np .atanh (ilist .IList ([0.42 , 0.87 , 0.32 ], elem = types .Float ))
86+ truth = np .arctanh (ilist .IList ([0.42 , 0.87 , 0.32 ], elem = types .Float ))
8787 out = atanh_func (ilist .IList ([0.42 , 0.87 , 0.32 ], elem = types .Float ))
8888 assert isinstance (out , ilist .IList )
8989 assert out .elem == types .Float
@@ -368,7 +368,7 @@ def pow_func(x, y):
368368
369369
370370def test_pow ():
371- truth = np .pow (
371+ truth = np .power (
372372 ilist .IList ([0.42 , 0.87 , 0.32 ], elem = types .Float ),
373373 3.33 ,
374374 )
0 commit comments