Skip to content

Commit bd10961

Browse files
committed
update with atol
1 parent d6540f6 commit bd10961

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/tests/test_liquid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def test_mbar_weights_match_reference(mbar_weights):
5656
assert mbar_weights.shape == W_ref.shape, (
5757
f"Weight matrix shape mismatch: got {mbar_weights.shape}, expected {W_ref.shape}"
5858
)
59-
np.testing.assert_allclose(mbar_weights, W_ref, atol=1e-10, rtol=1e-2,
59+
np.testing.assert_allclose(mbar_weights, W_ref, atol=1e-7, rtol=1e-2,
6060
err_msg="MBAR weights differ from v3 reference beyond rtol=1e-2")
6161

6262
class TestWaterTutorial(ForceBalanceTestCase):

0 commit comments

Comments
 (0)