From a6ea82fadfd8c1810d1cade41cbde7f84d0561bd Mon Sep 17 00:00:00 2001 From: Nathanael Wong Date: Fri, 6 Sep 2024 20:01:19 -0400 Subject: [PATCH] More updates to the tests --- test/runtests.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index 0f734a42..6151b359 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -14,7 +14,7 @@ end @testset "Test Creation, Detection and Removal of GeoRegions" begin - @test !isGeoRegion("TRP",throw=false) + @test !isID("TRP",throw=false) geo1 = RectRegion("TRP","GLB","Tropics",[30,-30,360,0]) geo2 = RectRegion("TRP_DTP","GLB","Deep Tropics",[10,-10,360,0]) @test isID("TRP",throw=false) @@ -41,8 +41,8 @@ end @test isID("TRP",path=pwd(),throw=false) @test isGeoRegion(geo1,throw=false) @test !isGeoRegion(geo1,path=homedir(),throw=false) - @test ! (rm(geo1,path=homedir()) === nothing) - @test rm(geo1) === nothing + @test !(rm(geo1,path=homedir()) === nothing) + @test rm(geo1) === nothing @test !isGeoRegion(geo1,throw=false) end