Skip to content

Commit 47a15c6

Browse files
Abhinav-KhotricardoV94
authored andcommitted
fix failing tests\
1 parent d997ba1 commit 47a15c6

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

tests/scalar/test_math.py

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -166,13 +166,5 @@ def test_psi(linker):
166166

167167
x_test = np.float64(0.7)
168168

169-
np.testing.assert_allclose(
170-
fn(x_test),
171-
scipy.special.psi(x_test),
172-
strict=True,
173-
)
174-
np.testing.assert_allclose(
175-
fn(-x_test),
176-
scipy.special.psi(-x_test),
177-
strict=True,
178-
)
169+
np.testing.assert_allclose(fn(x_test), scipy.special.psi(x_test))
170+
np.testing.assert_allclose(fn(-x_test), scipy.special.psi(-x_test))

0 commit comments

Comments
 (0)