Skip to content

Commit 232c884

Browse files
committed
aet -> at
1 parent d2c2edb commit 232c884

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc3/tests/test_variational_inference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -964,7 +964,7 @@ def test_discrete_not_allowed():
964964

965965
with pm.Model():
966966
mu = pm.Normal("mu", mu=0, sigma=10, size=3)
967-
z = pm.Categorical("z", p=aet.ones(3) / 3, size=len(y))
967+
z = pm.Categorical("z", p=at.ones(3) / 3, size=len(y))
968968
pm.Normal("y_obs", mu=mu[z], sigma=1.0, observed=y)
969969
with pytest.raises(opvi.ParametrizationError):
970970
pm.fit(n=1) # fails

0 commit comments

Comments
 (0)