From 30dfa541a038940a20a91bb3d91f3e02c46ac54c Mon Sep 17 00:00:00 2001 From: euzuro Date: Wed, 21 Mar 2007 16:08:08 +0000 Subject: [PATCH] correct test report git-svn-id: http://svn.openlayers.org/trunk/openlayers@2831 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- tests/Layer/test_HTTPRequest.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Layer/test_HTTPRequest.html b/tests/Layer/test_HTTPRequest.html index 4ea942cfb8..926566eb87 100644 --- a/tests/Layer/test_HTTPRequest.html +++ b/tests/Layer/test_HTTPRequest.html @@ -146,7 +146,7 @@ tUrl = "http://octo.metacarta.com/cgi-bin/mapserv"; layer = new OpenLayers.Layer.HTTPRequest(name, "chicken", tParams, null); str = layer.getFullRequestString(null, tUrl); - t.eq(str, tUrl + '?' + OpenLayers.Util.getParameterString(tParams), "getFullRequestString() works for url sans ?"); + t.eq(str, tUrl + '?' + OpenLayers.Util.getParameterString(tParams), "getFullRequestString() works with specified altUrl parameter"); // single url object tUrl = ["http://octo.metacarta.com/cgi-bin/mapserv"];