Skip to content

Commit ec98064

Browse files
committed
Fix comment in test_cycle
1 parent b94c9a3 commit ec98064

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/statespace/models/structural/components/test_cycle.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -265,10 +265,10 @@ def test_add_multivariate_cycle_components_with_different_observed():
265265

266266
# design: each row selects first state of its block
267267
expected_Z = np.zeros((4, 8))
268-
expected_Z[0, 0] = 1.0 # "a1" -> cycle1_Cos[a1]
269-
expected_Z[1, 2] = 1.0 # "a2" -> cycle1_Cos[a2]
270-
expected_Z[2, 4] = 1.0 # "b1" -> cycle2_Cos[b1]
271-
expected_Z[3, 6] = 1.0 # "b2" -> cycle2_Cos[b2]
268+
expected_Z[0, 0] = 1.0 # "a1" -> Cos_cycle1[a1]
269+
expected_Z[1, 2] = 1.0 # "a2" -> Cos_cycle1[a2]
270+
expected_Z[2, 4] = 1.0 # "b1" -> Cos_cycle2[b1]
271+
expected_Z[3, 6] = 1.0 # "b2" -> Cos_cycle2[b2]
272272
assert_allclose(Z, expected_Z)
273273

274274
# transition: block diagonal, each block is 2x2 frequency transition matrix

0 commit comments

Comments
 (0)