Skip to content

Commit

Permalink
Make TestMvNormalMisc.test_issue_3758 bound less strict
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardoV94 committed Jan 28, 2022
1 parent 5f43bb4 commit 8666bbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymc/tests/test_distributions_random.py
Original file line number Diff line number Diff line change
Expand Up @@ -1171,7 +1171,7 @@ def test_issue_3758(self):

for var in "bcd":
std = np.std(samples[var] - samples["a"])
npt.assert_allclose(std, 1, rtol=1e-2)
npt.assert_allclose(std, 1, rtol=2e-2)

def test_issue_3829(self):
with pm.Model() as model:
Expand Down

0 comments on commit 8666bbc

Please sign in to comment.