From 70cd167fc00b56becdd73e1733656f5a32c33963 Mon Sep 17 00:00:00 2001 From: tidwall Date: Sun, 3 May 2020 09:59:49 -0700 Subject: [PATCH] Fixed clip test #558 --- 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")