Skip to content

Commit bf09fa8

Browse files
committed
Fix formatting
1 parent 205d67a commit bf09fa8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/Containers/DenseAxisArray.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -475,19 +475,19 @@ And data, a 0-dimensional $(Array{Int,0}):
475475
@testset "test_containers_denseaxisarray_setindex_matrix" begin
476476
A = Containers.DenseAxisArray(zeros(3, 3), 1:3, [:a, :b, :c])
477477
A[:, [:a, :b]] .= 1.0
478-
@test A.data == [1.0 1.0 0.0; 1.0 1.0 0.0; ; 1.0 1.0 0.0]
478+
@test A.data == [1.0 1.0 0.0; 1.0 1.0 0.0; 1.0 1.0 0.0]
479479
A = Containers.DenseAxisArray(zeros(3, 3), 1:3, [:a, :b, :c])
480480
A[2:3, [:a, :b]] .= 1.0
481-
@test A.data == [0.0 0.0 0.0; 1.0 1.0 0.0; ; 1.0 1.0 0.0]
481+
@test A.data == [0.0 0.0 0.0; 1.0 1.0 0.0; 1.0 1.0 0.0]
482482
A = Containers.DenseAxisArray(zeros(3, 3), 1:3, [:a, :b, :c])
483483
A[3:3, [:a, :b]] .= 1.0
484-
@test A.data == [0.0 0.0 0.0; 0.0 0.0 0.0; ; 1.0 1.0 0.0]
484+
@test A.data == [0.0 0.0 0.0; 0.0 0.0 0.0; 1.0 1.0 0.0]
485485
A = Containers.DenseAxisArray(zeros(3, 3), 1:3, [:a, :b, :c])
486486
A[[1, 3], [:a, :b]] .= 1.0
487-
@test A.data == [1.0 1.0 0.0; 0.0 0.0 0.0; ; 1.0 1.0 0.0]
487+
@test A.data == [1.0 1.0 0.0; 0.0 0.0 0.0; 1.0 1.0 0.0]
488488
A = Containers.DenseAxisArray(zeros(3, 3), 1:3, [:a, :b, :c])
489489
A[[1, 3], [:a, :c]] .= 1.0
490-
@test A.data == [1.0 0.0 1.0; 0.0 0.0 0.0; ; 1.0 0.0 1.0]
490+
@test A.data == [1.0 0.0 1.0; 0.0 0.0 0.0; 1.0 0.0 1.0]
491491
end
492492

493493
@testset "test_containers_denseaxisarray_view" begin

0 commit comments

Comments
 (0)