Skip to content

Commit 9fb1fb2

Browse files
committed
Fix formatting
1 parent 1bc3f40 commit 9fb1fb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Containers/DenseAxisArray.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ And data, a 0-dimensional $(Array{Int,0}):
522522
end
523523

524524
@testset "test_containers_denseaxisarray_view_operations" begin
525-
c = Containers.@container([i=1:4, j=2:3], i + 2 * j)
525+
c = Containers.@container([i = 1:4, j = 2:3], i + 2 * j)
526526
d = view(c, 2:3, :)
527527
@test sum(c) == 60
528528
@test sum(d) == 30
@@ -532,7 +532,7 @@ And data, a 0-dimensional $(Array{Int,0}):
532532
end
533533

534534
@testset "test_containers_denseaxisarray_view_addition" begin
535-
c = Containers.@container([i=1:4, j=2:3], i + 2 * j)
535+
c = Containers.@container([i = 1:4, j = 2:3], i + 2 * j)
536536
d = view(c, 2:3, :)
537537
@test_throws MethodError d + d
538538
end

0 commit comments

Comments
 (0)