fix up Graticule test in IE, missing var keyword

git-svn-id: http://svn.openlayers.org/trunk/openlayers@9796 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
bartvde
2009-11-12 19:28:11 +00:00
parent 12c83b533d
commit 33e39a205a
+1 -1
View File
@@ -7,7 +7,7 @@
function test_initialize(t) { function test_initialize(t) {
t.plan(2); t.plan(2);
var options = {}; var options = {};
map = new OpenLayers.Map("map",{projection:"EPSG:4326"}); var map = new OpenLayers.Map("map",{projection:"EPSG:4326"});
var layer = new OpenLayers.Layer.WMS(); var layer = new OpenLayers.Layer.WMS();
map.addLayers([layer]); map.addLayers([layer]);