Skip to content

Commit c991627

Browse files
committed
Fix test errors on 32bit
1 parent a9e7d88 commit c991627

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/runtests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ ENV["DATADEPS_ALWAYS_ACCEPT"] = true
5454
@test eltype(df[!, :island]) === String
5555
@test eltype(df[!, :bill_length_mm]) === Union{Missing,Float64}
5656
@test eltype(df[!, :bill_depth_mm]) === Union{Missing,Float64}
57-
@test eltype(df[!, :flipper_length_mm]) === Union{Missing,Int}
58-
@test eltype(df[!, :body_mass_g]) === Union{Missing,Int}
57+
@test eltype(df[!, :flipper_length_mm]) === Union{Missing,Int64}
58+
@test eltype(df[!, :body_mass_g]) === Union{Missing,Int64}
5959
@test eltype(df[!, :sex]) === Union{Missing,String}
6060

6161
# Check first row

0 commit comments

Comments
 (0)