Skip to content

Commit 7fd49af

Browse files
Update diffeq.jl
1 parent 37fca21 commit 7fd49af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/diffeq.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ p = LorenzParameterVector(10.0, 28.0, 8 / 3)
1515
tspan = (0.0, 10.0)
1616
prob = ODEProblem(f, u0, tspan, p)
1717
sol = solve(prob, Rosenbrock23())
18-
@test sol.retcode === :Success
18+
@test sol.retcode == :Success
1919
sol = solve(prob, Tsit5())
2020
@test prob.u0 === sol.u[1] === u0
2121
@test prob.p === p

0 commit comments

Comments
 (0)