Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dpsanders committed May 18, 2018
1 parent 818a95e commit 93bb8e0
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions test/multidim_tests/multidim.jl
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,7 @@ end

end

@testset "getindex and setindex"
begin
@testset "getindex and setindex" begin
X = IntervalBox(3..4, 5..6)
@test X[1] == 3..4
@test X[2] == 5..6
Expand All @@ -155,8 +154,7 @@ begin
@test_throws BoundsError setindex(X, 5..5, 3)
end

@testset "Iteration"
begin
@testset "Iteration" begin
X = IntervalBox(3..4, 5..6)
Y = collect(X)
@test Y == [3..4, 5..6]
Expand Down

0 comments on commit 93bb8e0

Please sign in to comment.