We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 240dd96 commit 0bd4177Copy full SHA for 0bd4177
tests/strength/test_parameter_calculations.py
@@ -39,7 +39,7 @@ def test_compute_beta_success(P_A, expected_beta):
39
assert np.isclose(beta, expected_beta)
40
41
42
-@pytest.mark.parametrize("P_A", [-1,0,1,2])
+@pytest.mark.parametrize("P_A", [-1.0, 0.0, 1.01, 2.0])
43
def test_compute_beta_fails(P_A):
44
45
expected_error_message = f"Could not compute the value of beta for P_A={P_A}, " \
0 commit comments