Remove lint

This commit is contained in:
Andreas Hocevar
2021-06-28 18:10:51 +02:00
parent b5bb9382e2
commit 79f5f46d27
135 changed files with 1040 additions and 2374 deletions

View File

@@ -1018,9 +1018,8 @@ describe('ol.Map', function () {
it('gets coordinates in view projection', function (done) {
map.renderSync();
const coordinateMercator = map.getCoordinateFromPixelInternal(
screenCenter
);
const coordinateMercator =
map.getCoordinateFromPixelInternal(screenCenter);
expect(coordinateMercator[0]).to.roughlyEqual(centerMercator[0], 1e-5);
expect(coordinateMercator[1]).to.roughlyEqual(centerMercator[1], 1e-5);
done();