diff --git a/test/spec/ol/geom/flatgeom.test.js b/test/spec/ol/geom/flatgeom.test.js index 03ede2b5db..0f1ca8ea77 100644 --- a/test/spec/ol/geom/flatgeom.test.js +++ b/test/spec/ol/geom/flatgeom.test.js @@ -35,15 +35,6 @@ describe('ol.geom.flat', function() { }); - describe('ol.geom.flat.inflateCoordinates', function() { - - it('inflates coordinates', function() { - var coordinates = ol.geom.flat.inflateCoordinates([1, 2, 3, 4], 0, 4, 2); - expect(coordinates).to.eql([[1, 2], [3, 4]]); - }); - - }); - describe('ol.geom.flat.flipXY', function() { it('can flip XY coordinates', function() { @@ -75,6 +66,15 @@ describe('ol.geom.flat', function() { }); + describe('ol.geom.flat.inflateCoordinates', function() { + + it('inflates coordinates', function() { + var coordinates = ol.geom.flat.inflateCoordinates([1, 2, 3, 4], 0, 4, 2); + expect(coordinates).to.eql([[1, 2], [3, 4]]); + }); + + }); + describe('ol.geom.flat.inflateCoordinatess', function() { it('inflates arrays of coordinates', function() {