We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
allmethods
1 parent fcd95ad commit e5c1c5cCopy full SHA for e5c1c5c
test/tests.jl
@@ -619,11 +619,7 @@ end
619
@test DSE.alltypesigs(Union{}) == Any[]
620
@test DSE.alltypesigs(Union{Tuple{}}) == Any[Tuple{}]
621
@test DSE.alltypesigs(Tuple{}) == Any[Tuple{}]
622
-
623
- # TODO: Clean me up
624
- T = Type{T} where {T}
625
- @test DSE.alltypesigs(T) ==
626
- Base.rewrap_unionall.(DSE.uniontypes(Base.unwrap_unionall(T)), T)
+ @test DSE.alltypesigs(Tuple{G} where G) == Any[Tuple{G} where G]
627
end
628
@testset "groupby" begin
629
let groups = DSE.groupby(Int, Vector{Int}, collect(1:10)) do each
0 commit comments