From 88a99ead872f14858fb4589795f817414e01ac3f Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 14 Feb 2023 00:21:47 +0100 Subject: [PATCH] Fix tests --- test/Logic/GeoOperations.spec.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/Logic/GeoOperations.spec.ts b/test/Logic/GeoOperations.spec.ts index bc52f6fffa..3c52f37b32 100644 --- a/test/Logic/GeoOperations.spec.ts +++ b/test/Logic/GeoOperations.spec.ts @@ -168,9 +168,10 @@ describe("GeoOperations", () => { expect(result[0].geometry.type).to.eq("LineString") const clippedLine = (>result[0]).geometry.coordinates const expCoordinates = [ - [3.2185480732975975, 51.21502965337126], - [3.2207456783252724, 51.2155808773463], + [3.2185604, 51.215029800031594], + [3.2207457, 51.21557787977764], ] + expect(clippedLine).to.deep.equal(expCoordinates) }) })