Skip to content

Commit

Permalink
Fix 32-bit failure
Browse files Browse the repository at this point in the history
  • Loading branch information
quinnj committed Jul 12, 2017
1 parent c02f3e6 commit 9b3a4ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/core.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5116,7 +5116,7 @@ for U in boxedunions

A = Array{U}(ntuple(x->10, N)...)
@test length(A) == 10^N
@test Core.sizeof(A) == 8 * (10^N)
@test Core.sizeof(A) == sizeof(Int) * (10^N)
@test !isassigned(A, 1)
end
end
Expand Down

0 comments on commit 9b3a4ed

Please sign in to comment.