Skip to content

Commit 93f6fc2

Browse files
authored
Merge pull request #315 from ztangent/fix-selection-testset-names
Fixed small naming issue with the selection test sets.
2 parents d948cf3 + e9227bb commit 93f6fc2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/selection.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@testset begin "dynamic selection"
1+
@testset "dynamic selection" begin
22

33
s = select(:x, :y => :z, :y => :w)
44

@@ -33,7 +33,7 @@
3333
@test !(:x in selection)
3434
end
3535

36-
@testset begin "all selection"
36+
@testset "all selection" begin
3737

3838
s = selectall()
3939

@@ -46,7 +46,7 @@ end
4646
@test s[:x => :y] == AllSelection()
4747
end
4848

49-
@testset begin "complement selection"
49+
@testset "complement selection" begin
5050

5151
@test !(:x in complement(selectall()))
5252
@test :x in complement(select())

0 commit comments

Comments
 (0)