From 31af99c64d6f1b67462d0e2c2b0c7da33cfad369 Mon Sep 17 00:00:00 2001 From: crschmidt Date: Wed, 9 Aug 2006 03:54:10 +0000 Subject: [PATCH] Fix new test failures with the tile-reuse branch git-svn-id: http://svn.openlayers.org/trunk/openlayers@1138 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- tests/test_Layer_Grid.html | 4 ++-- tests/test_Layer_WMS.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_Layer_Grid.html b/tests/test_Layer_Grid.html index 89043e740d..418b26faa0 100644 --- a/tests/test_Layer_Grid.html +++ b/tests/test_Layer_Grid.html @@ -36,8 +36,8 @@ layer = new OpenLayers.Layer.WMS(name, url, params); 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, 7, "Grid rows is correct." ); + t.eq( layer.grid[0].length, 6, "Grid cols is correct." ); } diff --git a/tests/test_Layer_WMS.html b/tests/test_Layer_WMS.html index 5ef1f628f5..16536f5f45 100644 --- a/tests/test_Layer_WMS.html +++ b/tests/test_Layer_WMS.html @@ -66,8 +66,8 @@ layer = new OpenLayers.Layer.WMS(name, url, params); 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, 7, "Grid rows is correct." ); + t.eq( layer.grid[0].length, 6, "Grid cols is correct." ); }