Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nalimilan committed Sep 22, 2018
1 parent eefc25c commit 8a67a81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/DataFrames.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ module DataFrames
##############################################################################

using Reexport, StatsBase, SortingAlgorithms, Compat, Statistics, Unicode, Printf
using Base.Iterators
@reexport using CategoricalArrays, Missings
using Base.Sort, Base.Order
using Base.Sort, Base.Order, Base.Iterators

##############################################################################
##
Expand Down
2 changes: 1 addition & 1 deletion test/grouping.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module TestGrouping
b = repeat(Union{Int, Missing}[2, 1], outer=[4]),
c = Vector{Union{Float64, Missing}}(randn(8)))

missingfree = DataFrame(Any[collect(1:10)], [:x1])
missingfree = DataFrame([collect(1:10)], [:x1])

@testset "::Function, ::AbstractDataFrame" begin
cw = colwise(sum, df)
Expand Down

0 comments on commit 8a67a81

Please sign in to comment.