Skip to content

Commit 6e636b2

Browse files
committed
Activate unactivated tests
1 parent 16a3288 commit 6e636b2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/guess_propagation.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -90,21 +90,21 @@ prob = ODEProblem(sys, [], (0.0, 1.0), [x0 => 1.0])
9090
@variables y(t) = x0
9191
@mtkbuild sys = ODESystem([x ~ x0, D(y) ~ x], t)
9292
prob = ODEProblem(sys, [], (0.0, 1.0), [x0 => 1.0])
93-
prob[x] == 1.0
94-
prob[y] == 1.0
93+
@test prob[x] == 1.0
94+
@test prob[y] == 1.0
9595

9696
@parameters x0
9797
@variables x(t)
9898
@variables y(t) = x0
9999
@mtkbuild sys = ODESystem([x ~ y, D(y) ~ x], t)
100100
prob = ODEProblem(sys, [], (0.0, 1.0), [x0 => 1.0])
101-
prob[x] == 1.0
102-
prob[y] == 1.0
101+
@test prob[x] == 1.0
102+
@test prob[y] == 1.0
103103

104104
@parameters x0
105105
@variables x(t) = x0
106106
@variables y(t) = x
107107
@mtkbuild sys = ODESystem([x ~ y, D(y) ~ x], t)
108108
prob = ODEProblem(sys, [], (0.0, 1.0), [x0 => 1.0])
109-
prob[x] == 1.0
110-
prob[y] == 1.0
109+
@test prob[x] == 1.0
110+
@test prob[y] == 1.0

0 commit comments

Comments
 (0)