Skip to content

Commit

Permalink
Fix test errors on 32bit
Browse files Browse the repository at this point in the history
  • Loading branch information
devmotion committed Jun 29, 2020
1 parent a9e7d88 commit c991627
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ ENV["DATADEPS_ALWAYS_ACCEPT"] = true
@test eltype(df[!, :island]) === String
@test eltype(df[!, :bill_length_mm]) === Union{Missing,Float64}
@test eltype(df[!, :bill_depth_mm]) === Union{Missing,Float64}
@test eltype(df[!, :flipper_length_mm]) === Union{Missing,Int}
@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}
@test eltype(df[!, :sex]) === Union{Missing,String}

# Check first row
Expand Down

2 comments on commit c991627

@devmotion
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/17203

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.0 -m "<description of version>" c991627e85b5aed6ce6edf502f0613ac59276e04
git push origin v0.1.0

Please sign in to comment.