Skip to content

Commit 3eb5097

Browse files
Fix CSR ctor in tests
1 parent df59b7a commit 3eb5097

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/test_assembler_extensions.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ using SparseArrays, LinearAlgebra
103103
@test all(f[rdofs] .== 2fe)
104104

105105
# CSRAssembler: Assemble rectangular part in quadratic matrix
106-
K = SparseMatrixCSR(6, 6, [K.colptr..., 7, 7, 7], K.rowval, K.nzval)
106+
K = SparseMatrixCSR{1}(6, 6, K.rowptr, K.colval, K.nzval)
107107
assembler = start_assemble(K, f)
108108
rdofs = [1, 4, 6]
109109
cdofs = [1, 3]

0 commit comments

Comments
 (0)