From a3cc322593f45f15b8491681385df1dad3bef531 Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Sat, 12 Mar 2016 16:25:38 +0100 Subject: [PATCH] Fix indentation --- test/spec/ol/geom/flat/centerflatgeom.test.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/spec/ol/geom/flat/centerflatgeom.test.js b/test/spec/ol/geom/flat/centerflatgeom.test.js index c21fa7439b..6c30db3900 100644 --- a/test/spec/ol/geom/flat/centerflatgeom.test.js +++ b/test/spec/ol/geom/flat/centerflatgeom.test.js @@ -19,12 +19,12 @@ describe('ol.geom.flat.center', function() { it('calculates the centers of two squares', function() { var squareMultiPoly = new ol.geom.MultiPolygon([ - [ - [[0, 0], [0, 1], [1, 1], [1, 0], [0, 0]] - ], - [ - [[3, 0], [3, 1], [4, 1], [4, 0], [3, 0]] - ] + [ + [[0, 0], [0, 1], [1, 1], [1, 0], [0, 0]] + ], + [ + [[3, 0], [3, 1], [4, 1], [4, 0], [3, 0]] + ] ]); var got = ol.geom.flat.center.linearRingss( squareMultiPoly.flatCoordinates,