Skip to content

Commit e5c1c5c

Browse files
committed
fix the allmethods case in tests
1 parent fcd95ad commit e5c1c5c

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

test/tests.jl

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -619,11 +619,7 @@ end
619619
@test DSE.alltypesigs(Union{}) == Any[]
620620
@test DSE.alltypesigs(Union{Tuple{}}) == Any[Tuple{}]
621621
@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)
622+
@test DSE.alltypesigs(Tuple{G} where G) == Any[Tuple{G} where G]
627623
end
628624
@testset "groupby" begin
629625
let groups = DSE.groupby(Int, Vector{Int}, collect(1:10)) do each

0 commit comments

Comments
 (0)