Skip to content

Commit 701733d

Browse files
test: update tests with new guess requirements
1 parent fd45602 commit 701733d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/initial_values.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ end
202202
@variables a(t) b(t) c(t) d(t) e(t)
203203
eqs = [D(a) ~ b, D(b) ~ c, D(c) ~ d, D(d) ~ e, D(e) ~ 1]
204204
@mtkcompile sys = System(eqs, t)
205-
@test_throws ["a(t)", "c(t)"] ODEProblem(
205+
@test_throws ["d(t)", "c(t)"] ODEProblem(
206206
sys, [e => 2, a => b, b => a + 1, c => d, d => c + 1], (0, 1))
207207
end
208208

0 commit comments

Comments
 (0)