Skip to content

Commit

Permalink
Fix dangling step in test_population
Browse files Browse the repository at this point in the history
  • Loading branch information
lucianopaz committed Oct 7, 2024
1 parent cdcdb58 commit b810389
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/sampling/test_population.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def test_nonparallelized_chains_are_random(self):
cores=1,
draws=20,
tune=0,
step=DEMetropolis(),
step=step,
compute_convergence_checks=False,
)
samples = idata.posterior["x"].values[:, 5]
Expand All @@ -82,7 +82,7 @@ def test_parallelized_chains_are_random(self):
cores=4,
draws=20,
tune=0,
step=DEMetropolis(),
step=step,
compute_convergence_checks=False,
)
samples = idata.posterior["x"].values[:, 5]
Expand Down

0 comments on commit b810389

Please sign in to comment.