From f28ebc2a02ac97ea9d95ba4781dfdefdff2bcaa0 Mon Sep 17 00:00:00 2001 From: ahocevar Date: Wed, 9 Dec 2009 17:38:42 +0000 Subject: [PATCH] added required layer url to fix failing test. git-svn-id: http://svn.openlayers.org/trunk/openlayers@9878 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- tests/Layer/WFS.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Layer/WFS.html b/tests/Layer/WFS.html index e44d36604c..461844892d 100644 --- a/tests/Layer/WFS.html +++ b/tests/Layer/WFS.html @@ -160,7 +160,7 @@ var map = new OpenLayers.Map('map'); map.addLayer(new OpenLayers.Layer("",{isBaseLayer: true} )); // we use an empty moveTo function because we don't want to request tiles - var layer = new OpenLayers.Layer.WFS("","",{},{'projection': new OpenLayers.Projection("EPSG:900913"), + var layer = new OpenLayers.Layer.WFS("","/wfs",{},{'projection': new OpenLayers.Projection("EPSG:900913"), moveTo: function() {}}); map.addLayer(layer); map.zoomToMaxExtent();