diff --git a/test/spec/ol/coordinate.test.js b/test/spec/ol/coordinate.test.js index e7b2d80bd6..1998097f8e 100644 --- a/test/spec/ol/coordinate.test.js +++ b/test/spec/ol/coordinate.test.js @@ -272,9 +272,9 @@ describe('ol.coordinate', function () { it('moves far off right coordinate to real world', function () { expect(wrapX([1096, 48], projection)).to.eql([16, 48]); }); - + const swiss = new Projection({code: 'EPSG:21781', units: 'm'}); - + it('leaves non-global projection coordinates untouched', function () { expect(wrapX([1096, 48], swiss)).to.eql([1096, 48]); });