Skip to content

Commit 97153ff

Browse files
committed
Fix one constructor
1 parent db9d14a commit 97153ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_sparse_jacobian.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ SPARSITY_DETECTION_ALGS = [JacPrototypeSparsityDetection(; jac_prototype = J_spa
124124
@testset "sparse_jacobian $(nameof(typeof(difftype))): In place" for difftype in (
125125
AutoSparse(AutoForwardDiff()),
126126
AutoForwardDiff(), AutoSparse{<:AutoForwardDiff}(; chunksize = 0),
127-
AutoForwardDiff(; chunksize = 0), AutoSparse{<:AutoForwardDiff}(;
128-
chunksize = 4),
127+
AutoForwardDiff(; chunksize = 0), AutoSparse(AutoForwardDiff(;
128+
chunksize = 4)),
129129
AutoForwardDiff(; chunksize = 4), AutoSparse(AutoFiniteDiff()), AutoFiniteDiff(),
130130
AutoEnzyme(), AutoSparse(AutoEnzyme()))
131131
y = similar(x)

0 commit comments

Comments
 (0)