From 91810123c48a7de6c51c929e511d44606f7eb41f Mon Sep 17 00:00:00 2001 From: Daniel Karrasch Date: Mon, 20 Apr 2026 08:50:35 +0200 Subject: [PATCH] Reomve test with SymTridiagonal with equal-length diagonals --- test/linalg.jl | 4 ---- 1 file changed, 4 deletions(-) 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