We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d997ba1 commit 47a15c6Copy full SHA for 47a15c6
tests/scalar/test_math.py
@@ -166,13 +166,5 @@ def test_psi(linker):
166
167
x_test = np.float64(0.7)
168
169
- np.testing.assert_allclose(
170
- fn(x_test),
171
- scipy.special.psi(x_test),
172
- strict=True,
173
- )
174
175
- fn(-x_test),
176
- scipy.special.psi(-x_test),
177
178
+ np.testing.assert_allclose(fn(x_test), scipy.special.psi(x_test))
+ np.testing.assert_allclose(fn(-x_test), scipy.special.psi(-x_test))
0 commit comments