Skip to content

Commit

Permalink
Fix check of LTS
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielVandH committed Aug 17, 2024
1 parent b86d65b commit d30ff72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_symbanded.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit d30ff72

Please sign in to comment.