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." ); }