diff --git a/test/linalg.jl b/test/linalg.jl index bcda7ef1..f803d394 100644 --- a/test/linalg.jl +++ b/test/linalg.jl @@ -844,10 +844,6 @@ end # symtridiagonal with non-empty off-diagonal b = SymTridiagonal(sparsevec(Int[1, 2, 3]), sparsevec(Int[1, 2])) @test b + b == Matrix(b) + Matrix(b) - - # a symtridiagonal with an additional off-diagonal element - c = SymTridiagonal(sparsevec(Int[1, 2, 3]), sparsevec(Int[1, 2, 3])) - @test c + c == Matrix(c) + Matrix(c) end @testset "kronecker product" begin