Skip to content

Commit 97a7b70

Browse files
committed
Format
1 parent 928dfc8 commit 97a7b70

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/input_output_handling.jl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,14 @@ fsys2 = flatten(sys2)
3636
@test !is_bound(fsys2, sys.u)
3737
@test !is_bound(fsys2, sys2.sys.u)
3838

39-
4039
@test is_bound(sys3, sys.u) # I would like to write sys3.sys.u here but that's not how the variable is stored in the equations
4140
@test is_bound(sys3, sys.x)
4241

4342
@test is_bound(sys4, sys.u)
4443
@test !is_bound(sys4, u)
4544

4645
fsys4 = flatten(sys4)
47-
@test is_bound(fsys4, sys.u)
46+
@test is_bound(fsys4, sys.u)
4847
@test !is_bound(fsys4, u)
4948

5049
@test isequal(inputs(sys), [u])
@@ -175,7 +174,7 @@ u = [rand()]
175174
@test f[1](x, u, p, 1) == [u; 0; 0; 0]
176175

177176
@parameters t
178-
@variables x(t) u(t) [input=true]
177+
@variables x(t) u(t) [input = true]
179178
eqs = [Differential(t)(x) ~ u]
180179
@named sys = ODESystem(eqs, t)
181180
structural_simplify(sys)

0 commit comments

Comments
 (0)