From c3378d0bd5c36ae115961f693bd8fb1ae84cb815 Mon Sep 17 00:00:00 2001 From: Tom Payne Date: Mon, 2 Dec 2013 12:04:38 +0100 Subject: [PATCH] Order test cases alphabetically --- test/spec/ol/geom/flatgeom.test.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) 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() {