Skip to content

Commit d73fc37

Browse files
authored
add an outer @testset for LU tests (#997)
1 parent 4225f1b commit d73fc37

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/lu.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
using StaticArrays, Test, LinearAlgebra
22

3+
@testset "LU" begin
4+
35
@testset "LU utils" begin
46
F = lu(SA[1 2; 3 4])
57

@@ -75,4 +77,6 @@ end
7577
@test isa(lu(A; check=false), StaticArrays.LU)
7678
@test isa(lu(A; check=true), StaticArrays.LU)
7779
end
78-
end
80+
end
81+
82+
end # @testset "LU"

0 commit comments

Comments
 (0)