From 93bb8e0f4ab36cc218aa14f8d65cb476d08d727b Mon Sep 17 00:00:00 2001 From: David Sanders Date: Fri, 18 May 2018 15:37:54 -0500 Subject: [PATCH] Typo --- test/multidim_tests/multidim.jl | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/test/multidim_tests/multidim.jl b/test/multidim_tests/multidim.jl index 8ab3637b0..84ccb71fc 100644 --- a/test/multidim_tests/multidim.jl +++ b/test/multidim_tests/multidim.jl @@ -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 @@ -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]