From 47e26dd6b9d72d2477daeb2799e30c2c95191a1a Mon Sep 17 00:00:00 2001 From: Jishnu Bhattacharya Date: Fri, 29 Sep 2023 18:07:46 +0530 Subject: [PATCH] Explicit types in test RHS --- test/sparsevector.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sparsevector.jl b/test/sparsevector.jl index 7e832b57..0e199caa 100644 --- a/test/sparsevector.jl +++ b/test/sparsevector.jl @@ -1541,7 +1541,7 @@ mutable struct t20488 end # ensure that a vector of sparsevecs doesn't use pretty printing for elements S = sparsevec(Int64[1,4], Int64[2,3]) - @test repr(S) == "sparsevec($([1, 4]), $([2, 3]), 4)" + @test repr(S) == "sparsevec($(Int64[1,4]), $(Int64[2,3]), 4)" @test repr([S]) == "$(SparseArrays.SparseVector){Int64, Int64}[$(repr(S))]" end