Ignore element order for FeatureCollection round trip

This commit is contained in:
Andreas Hocevar
2016-02-23 23:36:12 +01:00
parent 7a953a166e
commit cdf9eda132

View File

@@ -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});
});
});