From d30ff72789801516a4c705888a33d9f5bf623d95 Mon Sep 17 00:00:00 2001 From: Daniel VandenHeuvel <95613936+DanielVandH@users.noreply.github.com> Date: Sat, 17 Aug 2024 22:01:30 +0100 Subject: [PATCH] Fix check of LTS --- test/test_symbanded.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_symbanded.jl b/test/test_symbanded.jl index b8098504..2cf802a3 100644 --- a/test/test_symbanded.jl +++ b/test/test_symbanded.jl @@ -408,7 +408,7 @@ end B = BandedMatrix(Symmetric(L * L')); Bv = Symmetric(view(B, :, :)) chol = cholesky(Bv) - if VERSION > v"1.6" + if VERSION >= v"1.7" @test MemoryLayout(chol.U) isa TriangularLayout{'U', 'N', typeof(MemoryLayout(B))} @test MemoryLayout(chol.L) isa TriangularLayout{'L', 'N', typeof(MemoryLayout(B'))} @test isbanded(chol.L)