From 8bded032dfdeefc4fa2b234719558245ca4a99c8 Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Sun, 28 Sep 2014 14:59:56 -0600 Subject: [PATCH] Fix failing GML format test --- test/spec/ol/format/gmlformat.test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/spec/ol/format/gmlformat.test.js b/test/spec/ol/format/gmlformat.test.js index 05fcd09388..9b52a4541a 100644 --- a/test/spec/ol/format/gmlformat.test.js +++ b/test/spec/ol/format/gmlformat.test.js @@ -876,6 +876,7 @@ describe('ol.format.GML', function() { }); it('writes back features as GML', function() { + this.timeout(4000); var serialized = gmlFormat.writeFeatures(features); expect(serialized).to.xmleql(ol.xml.load(text)); });