fix Point ambiguity

This commit is contained in:
Daniel Schwabeneder 2019-09-17 15:40:00 +02:00
parent 1e0fcbc65e
commit f7e19bcf63

View File

@ -128,6 +128,6 @@ end
[(missing,missing)], [(missing,missing,missing),("a","b","c")])
for z in zipped
@test isequal(collect(zip(Plots.unzip(z)...)), z)
@test isequal(collect(zip(Plots.unzip(Point.(z))...)), z)
@test isequal(collect(zip(Plots.unzip(GeometryTypes.Point.(z))...)), z)
end
end