From 1dd1af268a354400563fb05aa7e787985befef3d Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Wed, 8 Apr 2020 14:26:27 -0700 Subject: [PATCH] Fix clip test after geoOptions change. --- internal/clip/clip_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/clip/clip_test.go b/internal/clip/clip_test.go index d743c2e5..dee60edc 100644 --- a/internal/clip/clip_test.go +++ b/internal/clip/clip_test.go @@ -88,7 +88,7 @@ func TestClipPolygon2(t *testing.T) { }, } polygon := PPO(exterior, holes) - clipped := Clip(polygon, RO(1.1, 0.8, 1.15, 2.1)) + clipped := Clip(polygon, RO(1.1, 0.8, 1.15, 2.1), nil) cp, ok := clipped.(*geojson.Polygon) if !ok { t.Fatal("wrong type")