Skip to content

Commit b8475f4

Browse files
authored
fix test
1 parent 324253a commit b8475f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ArrayInterfaceCore/test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Aqua.test_all(ArrayInterfaceCore)
1313

1414
@testset "zeromatrix and unsafematrix" begin
1515
for T in (Int, Float32, Float64)
16-
for (vectype, mattype) in ((Vector{T}, Matrix{T}), (SparseVector{T}, SparseMatrix{T}))
16+
for (vectype, mattype) in ((Vector{T}, Matrix{T}), (SparseVector{T}, SparseMatrixCSC{T, Int}))
1717
v = vecttype(rand(4))
1818
um = undefmatrix(v)
1919
@test size(um) == (length(v),length(v))

0 commit comments

Comments
 (0)