Skip to content

Commit 84bf6f9

Browse files
committed
Fixed test for partition
1 parent 09fa466 commit 84bf6f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ _a, _b, _c = fastindices(:a, :b, :c)
4141
@test fastindices(("a", Val(:b))) == (Val(:a), Val(:b))
4242

4343
@test collect(ComponentArrays.partition(collect(1:12), 3)) == [[1,2,3], [4,5,6], [7,8,9], [10,11,12]]
44-
@test size(ComponentArrays.partition(zeros(2,2,2), 1, 2, 2)[2,1,1]) == (1, 2, 2)
44+
@test size(collect(ComponentArrays.partition(zeros(2,2,2), 1, 2, 2))[2,1,1]) == (1, 2, 2)
4545
end
4646

4747
@testset "Construction" begin

0 commit comments

Comments
 (0)