Skip to content

Commit

Permalink
fix tests: allow DataAPI as source for groupby (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericphanson authored Oct 3, 2024
1 parent 2362f41 commit e78b1ee
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,10 @@ if VERSION > v"1.9-"
ext_imports = Dict(only_name_source(explicit_imports(TestPkg)))[DataFramesExt]
@test ext_imports == [(; name=:DataFrames, source=DataFrames),
(; name=:DataFrame, source=DataFrames),
(; name=:groupby, source=DataFrames)]
(; name=:groupby, source=DataFrames)] ||
ext_imports == [(; name=:DataFrames, source=DataFrames),
(; name=:DataFrame, source=DataFrames),
(; name=:groupby, source=DataFrames.DataAPI)]
end
end

Expand Down

0 comments on commit e78b1ee

Please sign in to comment.