From b5fe2303796351de69dc99cea1b0b86079152919 Mon Sep 17 00:00:00 2001 From: Jameson Nash Date: Sat, 3 Apr 2021 14:58:18 -0400 Subject: [PATCH] SparseArrays: disable unnecessary inferred test Better alternative to #40332 --- stdlib/SparseArrays/test/sparse.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/SparseArrays/test/sparse.jl b/stdlib/SparseArrays/test/sparse.jl index 35b1d8aec74d4..fa250cbe348c7 100644 --- a/stdlib/SparseArrays/test/sparse.jl +++ b/stdlib/SparseArrays/test/sparse.jl @@ -2201,7 +2201,7 @@ end # Test that concatenations of pairs of sparse matrices yield sparse arrays @test issparse(vcat(spmat, spmat)) @test issparse(hcat(spmat, spmat)) - @test issparse(@inferred(hvcat((2,), spmat, spmat))) + @test issparse(hvcat((2,), spmat, spmat)) @test issparse(cat(spmat, spmat; dims=(1,2))) # Test that concatenations of a sparse matrice with a dense matrix/vector yield sparse arrays @test issparse(vcat(spmat, densemat))