Skip to content

Commit 8666bbc

Browse files
committed
Make TestMvNormalMisc.test_issue_3758 bound less strict
1 parent 5f43bb4 commit 8666bbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc/tests/test_distributions_random.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1171,7 +1171,7 @@ def test_issue_3758(self):
11711171

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

11761176
def test_issue_3829(self):
11771177
with pm.Model() as model:

0 commit comments

Comments
 (0)