We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9e7d88 commit c991627Copy full SHA for c991627
test/runtests.jl
@@ -54,8 +54,8 @@ ENV["DATADEPS_ALWAYS_ACCEPT"] = true
54
@test eltype(df[!, :island]) === String
55
@test eltype(df[!, :bill_length_mm]) === Union{Missing,Float64}
56
@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}
+ @test eltype(df[!, :flipper_length_mm]) === Union{Missing,Int64}
+ @test eltype(df[!, :body_mass_g]) === Union{Missing,Int64}
59
@test eltype(df[!, :sex]) === Union{Missing,String}
60
61
# Check first row
0 commit comments