Skip to content

Commit 06961ef

Browse files
committed
Typo
1 parent c9e5a02 commit 06961ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_approximations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ def test_approximate_gamma(self, k):
174174
x = self.priors[self.n][k][mean_column]
175175
xvar = self.priors[self.n][k][var_column]
176176
# match mean/variance
177-
alpha_0, beta_0 = approx.approximate_gamma_mom(x, xvar)
177+
alpha_0, beta_0 = approximate_gamma_mom(x, xvar)
178178
ck_x = alpha_0 / beta_0
179179
ck_xvar = alpha_0 / beta_0**2
180180
assert np.isclose(x, ck_x)

0 commit comments

Comments
 (0)