From f7e19bcf6368df653daafd74cfbf22c06ae84eaa Mon Sep 17 00:00:00 2001 From: Daniel Schwabeneder Date: Tue, 17 Sep 2019 15:40:00 +0200 Subject: [PATCH] fix Point ambiguity --- test/runtests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index 71877e34..6cdc6d60 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -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