Skip to content

Commit f8183a5

Browse files
pm.ConstantData -> pm.Data
1 parent 0c53df5 commit f8183a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc_experimental/tests/statespace/test_distributions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def data():
4646
@pytest.fixture(scope="session")
4747
def pymc_model(data):
4848
with pm.Model() as mod:
49-
data = pm.ConstantData("data", data.values)
49+
data = pm.Data("data", data.values)
5050
P0_diag = pm.Exponential("P0_diag", 1, shape=(2,))
5151
P0 = pm.Deterministic("P0", pt.diag(P0_diag))
5252
initial_trend = pm.Normal("initial_trend", shape=(2,))

0 commit comments

Comments
 (0)