From ae2b3359f8ec6cc1ab66b94bcdd39b4e3eafbd0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Lemoine?= Date: Tue, 4 Feb 2014 14:16:16 +0100 Subject: [PATCH] Fix the kml format tests --- test/spec/ol/format/kmlformat.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/spec/ol/format/kmlformat.test.js b/test/spec/ol/format/kmlformat.test.js index 3fb57ec856..141f0c0f19 100644 --- a/test/spec/ol/format/kmlformat.test.js +++ b/test/spec/ol/format/kmlformat.test.js @@ -588,7 +588,7 @@ describe('ol.format.KML', function() { var imageStyle = style.getImage(); expect(imageStyle).to.be.an(ol.style.Icon); expect(imageStyle.getSrc()).to.eql('http://foo.png'); - expect(imageStyle.getAnchor()).to.eql([0.5, 0.5]); + expect(imageStyle.getAnchor()).to.be(null); expect(imageStyle.getRotation()).to.eql(0); expect(imageStyle.getSize()).to.be(null); expect(style.getText()).to.be(null);