Skip to content

Commit 10cfd55

Browse files
committed
Fix jitter stability test failure
1 parent 3962da8 commit 10cfd55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/pathfinder/test_pathfinder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,11 @@ def unstable_lbfgs_update_mask_model() -> pm.Model:
9393
return mdl
9494

9595

96-
@pytest.mark.parametrize("jitter", [12.0, 500.0, 1000.0])
96+
@pytest.mark.parametrize("jitter", [12.0, 750.0, 1000.0])
9797
def test_unstable_lbfgs_update_mask(capsys, jitter):
9898
model = unstable_lbfgs_update_mask_model()
9999

100-
if jitter < 500.0:
100+
if jitter < 750.0:
101101
# Low jitter values should succeed
102102
with model:
103103
idata = pmx.fit(

0 commit comments

Comments
 (0)