From 3ebbf969f2aeda8783b4b44fd554cd76ce49ec87 Mon Sep 17 00:00:00 2001 From: Schuyler Erle Date: Wed, 24 May 2006 04:31:57 +0000 Subject: [PATCH] Fix test_Layer_WMS.html, which was broken by r301. git-svn-id: http://svn.openlayers.org/trunk/openlayers@312 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- tests/test_Layer_WMS.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_Layer_WMS.html b/tests/test_Layer_WMS.html index e3dedd7e27..c7d60746d2 100644 --- a/tests/test_Layer_WMS.html +++ b/tests/test_Layer_WMS.html @@ -37,8 +37,8 @@ layer = new OpenLayers.Layer.WMS('Test Layer', "http://octo.metacarta.com/cgi-bin/mapserv", {map: '/mapdata/vmap_wms.map', layers: 'basic', format: 'image/jpeg'}); map.addLayer(layer); map.setCenter(new OpenLayers.LonLat(0,0),5); - t.eq( layer.grid.length, 4, "Grid rows is correct." ); - t.eq( layer.grid[0].length, 2, "Grid cols is correct." ); + t.eq( layer.grid.length, 3, "Grid rows is correct." ); + t.eq( layer.grid[0].length, 3, "Grid cols is correct." ); }