We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55d514a commit 2b2e40cCopy full SHA for 2b2e40c
lib/ArrayInterfaceCore/test/runtests.jl
@@ -14,7 +14,7 @@ Aqua.test_all(ArrayInterfaceCore)
14
@testset "zeromatrix and unsafematrix" begin
15
for T in (Int, Float32, Float64)
16
for (vectype, mattype) in ((Vector{T}, Matrix{T}), (SparseVector{T}, SparseMatrixCSC{T, Int}))
17
- v = vectype(rand(3:10, 4))
+ v = vectype(rand(T, 4))
18
um = undefmatrix(v)
19
@test size(um) == (length(v),length(v))
20
@test typeof(um) == mattype
0 commit comments