Skip to content

Commit

Permalink
Missed PR review fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
rofinn committed Jul 11, 2019
1 parent cadd28d commit 81fc7f8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ version = "0.2.0"

[deps]
IterTools = "c8e1da08-722c-5040-9ed9-7db0dc04731e"
Missings = "e1d29d7a-bbdc-5cf2-9ac0-f12de2c33e28"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ import Impute:
df.cos[[4, 9]] .= missing

result = impute(df, DropVars(; context=ctx))
expected = df[[:cos]]
expected = select(df, :cos)

@test isequal(result, expected)
@test isequal(result, Impute.dropvars(df; context=ctx))
Expand Down

0 comments on commit 81fc7f8

Please sign in to comment.