From 51db8f9308fd96655f8fd212c64a8aae951f4c25 Mon Sep 17 00:00:00 2001 From: mike-000 <49240900+mike-000@users.noreply.github.com> Date: Thu, 10 Dec 2020 11:22:40 +0000 Subject: [PATCH] Test projections without transforms --- test/spec/ol/proj.test.js | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/test/spec/ol/proj.test.js b/test/spec/ol/proj.test.js index f5f3fbf8ca..eb0b9f7feb 100644 --- a/test/spec/ol/proj.test.js +++ b/test/spec/ol/proj.test.js @@ -415,18 +415,9 @@ describe('ol.proj', function () { code: 'foo', units: 'ft', }); - let pointResolution = getPointResolution( - projection, - 2, - [0, 0] - ); + let pointResolution = getPointResolution(projection, 2, [0, 0]); expect(pointResolution).to.be(2); - pointResolution = getPointResolution( - projection, - 2, - [0, 0], - 'm' - ); + pointResolution = getPointResolution(projection, 2, [0, 0], 'm'); expect(pointResolution).to.be(0.6096); }); });