From 02e8c1ba00968cf61f954b85fa2add7a2ef16706 Mon Sep 17 00:00:00 2001 From: Schuyler Erle Date: Wed, 9 Aug 2006 23:44:59 +0000 Subject: [PATCH] Fix kaMap test to account for tile buffering. git-svn-id: http://svn.openlayers.org/trunk/openlayers@1182 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- tests/test_Layer_KaMap.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_Layer_KaMap.html b/tests/test_Layer_KaMap.html index 94e1ae8481..63046a3031 100644 --- a/tests/test_Layer_KaMap.html +++ b/tests/test_Layer_KaMap.html @@ -30,8 +30,8 @@ layer = new OpenLayers.Layer.KaMap(name, url, params, units); map.addLayer(layer); map.setCenter(new OpenLayers.LonLat(0,0),5); - t.eq( layer.grid.length, 5, "KaMap rows is correct." ); - t.eq( layer.grid[0].length, 2, "KaMap cols is correct." ); + t.eq( layer.grid.length, 6, "KaMap rows is correct." ); + t.eq( layer.grid[0].length, 4, "KaMap cols is correct." ); }