Skip to content

Commit

Permalink
pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mjhajharia committed Jan 3, 2022
1 parent 85678d6 commit ecf8772
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pymc/tests/test_distributions_moments.py
Original file line number Diff line number Diff line change
Expand Up @@ -588,9 +588,10 @@ def test_poisson_moment(mu, size, expected):
Poisson("x", mu=mu, size=size)
assert_moment_is_expected(model, expected)


def test_generalized_poisson_moment(theta, lam, size, expected):
with Model() as model:
GeneralizedPoisson("x", theta=theta, lam = lam, size=size)
GeneralizedPoisson("x", theta=theta, lam=lam, size=size)
assert_moment_is_expected(model, expected)


Expand Down

0 comments on commit ecf8772

Please sign in to comment.