Skip to content

Commit 8520a2c

Browse files
committed
Make test_sample_posterior_predictive_after_set_data_with_coords more robust
Closes #5739
1 parent 85468b0 commit 8520a2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc/tests/test_data_container.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def test_sample_posterior_predictive_after_set_data_with_coords(self):
9999
with pm.Model() as model:
100100
x = pm.MutableData("x", [1.0, 2.0, 3.0], dims="obs_id")
101101
beta = pm.Normal("beta", 0, 10.0)
102-
pm.Normal("obs", beta * x, np.sqrt(1e-2), observed=y, dims="obs_id")
102+
pm.Normal("obs", beta * x, np.sqrt(1e-3), observed=y, dims="obs_id")
103103
idata = pm.sample(
104104
10,
105105
tune=100,

0 commit comments

Comments
 (0)