We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7fa843 commit 287cb57Copy full SHA for 287cb57
tests/statespace/models/structural/components/test_autoregressive.py
@@ -166,7 +166,7 @@ def test_autoregressive_shared_and_not_shared():
166
167
# make sure param_info is correct
168
# shound't have endog state when share_states is True
169
- assert "endog_" not in shared.param_info["params_shared_ar"]["dims"][0]
+ assert not any(dim.startwith("endog_") for dim in shared.param_info["params_shared_ar"]["dims"])
170
assert shared.param_info["sigma_shared_ar"]["dims"] is None
171
172
individual = st.AutoregressiveComponent(
0 commit comments