Skip to content

Commit 9a1373e

Browse files
committed
Fixed the error in CI
1 parent d7c9133 commit 9a1373e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ensemble_md/tests/test_ensemble_EXE.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@ def test_combine_weights(self, params_dict):
626626
errors = [[0, 0.1, 0.15, 0.1], [0, 0.12, 0.1, 0.12], [0, 0.12, 0.15, 0.1]]
627627
w_2, g_vec_2 = EEXE.combine_weights(weights, errors)
628628
assert np.allclose(w_2, [
629-
[0, 2.1, 3.86141, 3.45417],
630-
[0, 1.76141, 1.35417, 2.71437],
631-
[0, -0.40723, 0.95296, 1.95296]])
629+
[0, 2.1, 3.86140725, 3.45417313],
630+
[0, 1.76140725, 1.35417313, 2.71436889],
631+
[0, -0.40723412, 0.95296164, 1.95296164]])
632632
assert np.allclose(list(g_vec_2), [0, 2.1, 3.861407249466951, 3.4541731330165306, 4.814368891580968, 5.814368891580968]) # noqa: E501

0 commit comments

Comments
 (0)