From 22491601ba12d403ccba5944cd9c707b53b945ae Mon Sep 17 00:00:00 2001 From: Antoine Abt Date: Tue, 25 Nov 2014 17:38:06 +0100 Subject: [PATCH] Restore proj4 state after tests --- test/spec/ol/format/wmsgetfeatureinfoformat.test.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/spec/ol/format/wmsgetfeatureinfoformat.test.js b/test/spec/ol/format/wmsgetfeatureinfoformat.test.js index f4ec041a59..aff68e2dc0 100644 --- a/test/spec/ol/format/wmsgetfeatureinfoformat.test.js +++ b/test/spec/ol/format/wmsgetfeatureinfoformat.test.js @@ -20,6 +20,10 @@ describe('ol.format.WMSGetFeatureInfo', function() { }); }); + after(function() { + proj4.defs('urn:x-ogc:def:crs:EPSG:4326', undefined); + }); + it('creates 3 features', function() { expect(features).to.have.length(3); });