Skip to content

Commit 34462e4

Browse files
authored
Refactor test/Containers into functional form (#3158)
1 parent 2298c58 commit 34462e4

File tree

8 files changed

+882
-771
lines changed

8 files changed

+882
-771
lines changed

test/Containers/Containers.jl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@
1111
using Test
1212

1313
@testset "Containers" begin
14-
@testset "$(file)" for file in
15-
filter(f -> endswith(f, ".jl"), readdir(@__DIR__))
16-
if file in ["Containers.jl"]
14+
@testset "$(file)" for file in readdir(@__DIR__)
15+
if !endswith(file, ".jl") || file in ["Containers.jl"]
1716
continue
1817
end
1918
include(joinpath(@__DIR__, file))

0 commit comments

Comments
 (0)