Skip to content

Commit c9c40ff

Browse files
author
Stephen Hogg
committed
fix test_examples.py
1 parent 5d14410 commit c9c40ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc3/tests/test_examples.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def build_model(self):
274274
# Estimated mean count
275275
theta = pm.Uniform("theta", 0, 100)
276276
# Poisson likelihood
277-
pm.ZeroInflatedPoisson("y", theta, psi, observed=self.y)
277+
pm.ZeroInflatedPoisson("y", psi, theta, observed=self.y)
278278
return model
279279

280280
def test_run(self):

0 commit comments

Comments
 (0)