Skip to content

Commit c7b43b4

Browse files
committed
Make posterior tests more stable
1 parent 145856d commit c7b43b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pymc3/tests/sampler_fixtures.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,13 @@ def make_model(cls):
8282

8383
class StudentTFixture(KnownMean, KnownCDF):
8484
means = {'a': 0}
85-
cdfs = {'a': stats.t(df=3).cdf}
85+
cdfs = {'a': stats.t(df=4).cdf}
8686
ks_thin = 10
8787

8888
@classmethod
8989
def make_model(cls):
9090
with pm.Model() as model:
91-
a = pm.StudentT("a", nu=3, mu=0, sd=1)
91+
a = pm.StudentT("a", nu=4, mu=0, sd=1)
9292
return model
9393

9494

0 commit comments

Comments
 (0)