Skip to content

Commit db095b9

Browse files
ricardoV94twiecki
authored andcommitted
Fix values in test_ignores_observed
1 parent f5a028c commit db095b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pymc3/tests/test_sampling.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -834,9 +834,9 @@ def test_ignores_observed(self):
834834
prior = pm.sample_prior_predictive()
835835

836836
assert "observed_data" not in prior
837-
assert (prior["mu"] < 90).all()
837+
assert (prior["mu"] < -90).all()
838838
assert (prior["positive_mu"] > 90).all()
839-
assert (prior["x_obs"] < 90).all()
839+
assert (prior["x_obs"] < -90).all()
840840
assert prior["x_obs"].shape == (500, 200)
841841
npt.assert_array_almost_equal(prior["positive_mu"], np.abs(prior["mu"]), decimal=4)
842842

0 commit comments

Comments
 (0)