Skip to content

Commit 9b3a4ed

Browse files
committed
Fix 32-bit failure
1 parent c02f3e6 commit 9b3a4ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/core.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5116,7 +5116,7 @@ for U in boxedunions
51165116

51175117
A = Array{U}(ntuple(x->10, N)...)
51185118
@test length(A) == 10^N
5119-
@test Core.sizeof(A) == 8 * (10^N)
5119+
@test Core.sizeof(A) == sizeof(Int) * (10^N)
51205120
@test !isassigned(A, 1)
51215121
end
51225122
end

0 commit comments

Comments
 (0)