Skip to content

Commit

Permalink
Make test_sample_posterior_predictive_after_set_data_with_coords more…
Browse files Browse the repository at this point in the history
… robust

Closes #5739
  • Loading branch information
ricardoV94 committed May 10, 2022
1 parent 2aa01ef commit 8035f67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymc/tests/test_data_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def test_sample_posterior_predictive_after_set_data_with_coords(self):
with pm.Model() as model:
x = pm.MutableData("x", [1.0, 2.0, 3.0], dims="obs_id")
beta = pm.Normal("beta", 0, 10.0)
pm.Normal("obs", beta * x, np.sqrt(1e-2), observed=y, dims="obs_id")
pm.Normal("obs", beta * x, np.sqrt(1e-3), observed=y, dims="obs_id")
idata = pm.sample(
10,
tune=100,
Expand Down

0 comments on commit 8035f67

Please sign in to comment.