Skip to content

Commit b28b5c3

Browse files
authored
Update test/odesystem.jl
1 parent f496261 commit b28b5c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/odesystem.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ for p in [prob1, prob14]
225225
end
226226
prob2 = ODEProblem(sys,u0,tspan,p,jac=true)
227227
prob3 = ODEProblem(sys,u0,tspan,p,jac=true,sparse=true)
228-
@test prob3.f.jac_prototype isa SparseMatrixCSC
228+
@test prob3.f.sparsity isa SparseMatrixCSC
229229
@test_throws ArgumentError ODEProblem(sys,zeros(5),tspan,p)
230230
for (prob, atol) in [(prob1, 1e-12), (prob2, 1e-12), (prob3, 1e-12)]
231231
local sol

0 commit comments

Comments
 (0)