Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scipy/integrate/tests/test_bvp.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ def J_block(h, p):
J = construct_global_jac(n, m, k, i_jac, j_jac, h, df_dy, df_dy_middle,
df_dp, df_dp_middle, dbc_dya, dbc_dyb, dbc_dp)
J = J.toarray()
assert_allclose(J, J_true, rtol=1e-8, atol=1e-9)
assert_allclose(J, J_true, rtol=1e-8, atol=1e-8)


def test_parameter_validation():
Expand Down
2 changes: 1 addition & 1 deletion scipy/signal/tests/test_filter_design.py
Original file line number Diff line number Diff line change
Expand Up @@ -2790,7 +2790,7 @@ def test_bandstop(self):
sorted(z2, key=np.imag), rtol=1e-13)
assert_allclose(sorted(p, key=np.imag),
sorted(p2, key=np.imag), rtol=1e-13)
assert_allclose(k, k2, rtol=1e-15)
assert_allclose(k, k2, rtol=1e-14)

def test_ba_output(self):
# with transfer function conversion, without digital conversion
Expand Down
2 changes: 1 addition & 1 deletion scipy/special/tests/test_orthogonal.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ def test_regression(self):


def verify_gauss_quad(root_func, eval_func, weight_func, a, b, N,
rtol=1e-15, atol=1e-14):
rtol=1e-15, atol=1e-13):
# this test is copied from numpy's TestGauss in test_hermite.py
x, w, mu = root_func(N, True)

Expand Down
2 changes: 1 addition & 1 deletion scipy/stats/tests/test_morestats.py
Original file line number Diff line number Diff line change
Expand Up @@ -2115,7 +2115,7 @@ def test_circfuncs_close(self, test_func, numpy_func):
x = np.array([0.12675364631578953] * 10 + [0.12675365920187928] * 100)
circstat = test_func(x)
normal = numpy_func(x)
assert_allclose(circstat, normal, atol=1e-8)
assert_allclose(circstat, normal, atol=1e-7)

def test_circmean_axis(self):
x = np.array([[355, 5, 2, 359, 10, 350],
Expand Down