Skip to content

Commit be7b8d8

Browse files
Update steadystatesystems.jl
1 parent baf7de6 commit be7b8d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/steadystatesystems.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ for factor in [1e-1, 1e0, 1e10],
1717
ss_prob = SteadyStateProblem(de, u0, p)
1818
sol = solve(ss_prob, SSRootfind()).u[1]
1919
@test abs(sol^2 - factor * u0_p[2]) < 1e-8
20-
ss_prob = SteadyStateProblemExpr(de, u0, p)
21-
sol_expr = solve(eval(ss_prob), SSRootfind()).u[1]
20+
ss_prob = SteadyStateProblem(de, u0, p)
21+
sol_expr = solve(ss_prob, SSRootfind()).u[1]
2222
@test all(x -> x == 0, sol - sol_expr)
2323
end

0 commit comments

Comments
 (0)