Skip to content

Commit

Permalink
Tighten test_normal_scalar bound (#5366)
Browse files Browse the repository at this point in the history
  • Loading branch information
austereantelope authored Jan 23, 2022
1 parent 7bd8704 commit 4eecf14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymc/tests/test_sampling.py
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ def test_normal_scalar(self):
assert ppc["a"].shape == (nchains * ndraws,)
# mu's standard deviation may have changed thanks to a's observed
_, pval = stats.kstest(ppc["a"] - trace["mu"], stats.norm(loc=0, scale=1).cdf)
assert pval > 0.001
assert pval > 0.01

# size argument not introduced to fast version [2019/08/20:rpg]
with model:
Expand Down

0 comments on commit 4eecf14

Please sign in to comment.