Skip to content

Commit d5c59e3

Browse files
committed
adjust tolerance
1 parent aa4b9b3 commit d5c59e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2266,7 +2266,7 @@ def test_std_var_precision(func, exponent, engine):
22662266
[np.nanvar(array[::2] + offset, keepdims=True), np.nanvar(array[1::2] + offset, keepdims=True)]
22672267
)
22682268

2269-
tol = {"rtol": 1e-8, "atol": 1e-10} # Not sure how stringent to be here
2269+
tol = {"rtol": 3e-8, "atol": 1e-9} # Not sure how stringent to be here
22702270

22712271
assert_equal(expected, no_offset, tol)
22722272
assert_equal(expected_offset, with_offset, tol)

0 commit comments

Comments
 (0)