Skip to content

Commit 69329c1

Browse files
AVHoppCopilot
andcommitted
Add missing assert in test
Co-authored-by: Copilot <[email protected]>
1 parent 7a787c6 commit 69329c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/constraints/test_constraints_continuous.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def test_interpoint_equality_single_parameter(campaign, n_iterations, batch_size
8080

8181
res_grouped = res.groupby("BatchNr")
8282
interpoint_result = res_grouped["Conti_finite1"].sum()
83-
np.allclose(interpoint_result, 0.3, atol=TOLERANCE)
83+
assert np.allclose(interpoint_result, 0.3, atol=TOLERANCE)
8484

8585

8686
@pytest.mark.parametrize("parameter_names", [["Conti_finite1", "Conti_finite2"]])

0 commit comments

Comments
 (0)