Skip to content

Commit 8fe7079

Browse files
committed
fix name change of array vars
1 parent 97b123e commit 8fe7079

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_ODESystem.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ isinteractive() && plot(sol)
3535
x = states(P) # I haven't figured out a good way to access states, so this is a bit manual and ugly
3636
@unpack input, output = P
3737
P02_named = named_ss(P, [input.u], [output.u])
38-
@test P02_named.x == [Symbol("x[1](t)")]
38+
@test P02_named.x == [Symbol("(x(t))[1]")]
3939
@test P02_named.u == [Symbol("input₊u(t)")]
4040
@test P02_named.y == [Symbol("output₊u(t)")]
4141

0 commit comments

Comments
 (0)