From 7aa7b98285f2b04b9bb8c6fd6f5f33670aa96adb Mon Sep 17 00:00:00 2001 From: ahocevar Date: Sat, 3 Dec 2011 01:37:42 +0100 Subject: [PATCH] fixing indentation --- tests/Layer/Grid.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/Layer/Grid.html b/tests/Layer/Grid.html index 76e3162be1..462a04560f 100644 --- a/tests/Layer/Grid.html +++ b/tests/Layer/Grid.html @@ -125,14 +125,14 @@ t.ok( bounds.equals(testBounds), "getTilesBounds() returns correct bounds"); //world wrapped around the dateline - var bl = { bounds: new OpenLayers.Bounds(0,-90,180,90)}; - var tr = { bounds: new OpenLayers.Bounds(-180,-90,0,90)}; - layer.grid = [[bl, tr]]; + var bl = { bounds: new OpenLayers.Bounds(0,-90,180,90)}; + var tr = { bounds: new OpenLayers.Bounds(-180,-90,0,90)}; + layer.grid = [[bl, tr]]; - var bounds = layer.getTilesBounds(); - var testBounds = new OpenLayers.Bounds(0,-90,360,90); + var bounds = layer.getTilesBounds(); + var testBounds = new OpenLayers.Bounds(0,-90,360,90); - t.ok( bounds.equals(testBounds), "getTilesBounds() returns correct bounds"); + t.ok( bounds.equals(testBounds), "getTilesBounds() returns correct bounds"); }