Skip to content

Commit 820efb0

Browse files
committed
use SteadyStateDiffEq 2 syntax
1 parent 1f9386d commit 820efb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/miscellaneous_tests/nonlinear_solve.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ let
2626

2727
# Solves it using standard algorithm and simulation based algorithm.
2828
sol1 = solve(nl_prob; abstol=1e-12, reltol=1e-12).u
29-
sol2 = solve(nl_prob, DynamicSS(Rosenbrock23(); abstol=1e-12, reltol=1e-12); abstol=1e-12, reltol=1e-12).u
29+
sol2 = solve(nl_prob, DynamicSS(Rosenbrock23()); abstol=1e-12, reltol=1e-12).u
3030

3131
# Tests solutions are correct.
3232
@test isapprox(sol1[1], p[1] / p[2]; atol=1e-10)

0 commit comments

Comments
 (0)