From 6ea80ad958ab53ba6813d380d0e387d4f6c11e9b Mon Sep 17 00:00:00 2001 From: Nathanael Wong Date: Tue, 9 Jan 2024 13:34:37 -0100 Subject: [PATCH] update tests! --- test/runtests.jl | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index 32c591f5..21843bb0 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -8,8 +8,7 @@ using Test C = Point2(-45,-7.5) geo = GeoRegion("AR6_EAO") - @test A in geo - @test B in geo - @test !(C in geo) - @test filter(in(geo),[A,B,C]) == [A,B] + @test in(geo,A) + @test in(geo,B) + @test !in(geo,C) end