Skip to content

Commit 02d5949

Browse files
committed
Fix more
1 parent 4de8fa5 commit 02d5949

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/nonlinearsystem.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ eqs = [0 ~ σ*(y-x),
117117
0 ~ x*y - β*z]
118118
ns = NonlinearSystem(eqs, [x,y,z], [σ,ρ,β])
119119
np = NonlinearProblem(ns, [0,0,0], [1,2,3], jac=true, sparse=true)
120-
@test ModelingToolkit.get_jac(ns)[] isa SparseMatrixCSC
120+
@test calculate_jacobian(ns, sparse=true) isa SparseMatrixCSC
121121

122122
# issue #819
123123
@testset "Combined system name collisions" begin

0 commit comments

Comments
 (0)