Skip to content

Commit

Permalink
fix some more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bkamins committed Dec 3, 2018
1 parent 5ea8653 commit c0fda46
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion test/cat.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
module TestCat
using Test, Random, DataFrames
using DataFrames: columns
const = isequal

#
Expand Down
2 changes: 1 addition & 1 deletion test/iteration.jl
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ module TestIteration
@test map(minimum, eachcol(df, true)) == DataFrame(A = [1], B = [2]) # this is deprecated
@test map(minimum, eachcol(df, false)) == [1, 2]
@test eltypes(mapcols(Vector{Float64}, df)) == [Float64, Float64]
@test eltypes(map(Vector{Float64}, eachcol(df))) == Vector{Float64}
@test eltype(map(Vector{Float64}, eachcol(df))) == Vector{Float64}
@test eltypes(map(Vector{Float64}, eachcol(df, true))) == [Float64, Float64] # this is deprecated
@test eltype(map(Vector{Float64}, eachcol(df, false))) == Vector{Float64}

Expand Down

0 comments on commit c0fda46

Please sign in to comment.