From cdf9eda132a46a67921488ac4dab9e0fa9c97126 Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Tue, 23 Feb 2016 23:36:12 +0100 Subject: [PATCH] Ignore element order for FeatureCollection round trip --- test/spec/ol/format/gmlformat.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/spec/ol/format/gmlformat.test.js b/test/spec/ol/format/gmlformat.test.js index 7717b024c9..94eab7e373 100644 --- a/test/spec/ol/format/gmlformat.test.js +++ b/test/spec/ol/format/gmlformat.test.js @@ -1034,7 +1034,7 @@ describe('ol.format.GML3', function() { it('writes back features as GML', function() { var serialized = gmlFormat.writeFeaturesNode(features); - expect(serialized).to.xmleql(ol.xml.parse(text)); + expect(serialized).to.xmleql(ol.xml.parse(text), {ignoreElementOrder: true}); }); });