From 03735b74abcbff04193152ebc0f5fba5263bd430 Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Sat, 23 Mar 2013 11:27:14 +0100 Subject: [PATCH 1/5] tests/Bounds: Fixed typos --- tests/BaseTypes/Bounds.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/BaseTypes/Bounds.html b/tests/BaseTypes/Bounds.html index a1497cf6da..c03b57c82a 100644 --- a/tests/BaseTypes/Bounds.html +++ b/tests/BaseTypes/Bounds.html @@ -495,7 +495,7 @@ t.ok( ((bounds.left == object.lon) && (bounds.bottom == object.lat) && (bounds.right == originalBounds.right) && - (bounds.top == originalBounds.top)), "obj lonlat to extends correclty modifies left and bottom"); + (bounds.top == originalBounds.top)), "obj lonlat to extends correctly modifies left and bottom"); //right, top bounds = originalBounds.clone(); @@ -507,7 +507,7 @@ t.ok( ((bounds.left == originalBounds.left) && (bounds.bottom == originalBounds.bottom) && (bounds.right == object.lon) && - (bounds.top == object.lat)), "obj lonlat to extends correclty modifies right and top"); + (bounds.top == object.lat)), "obj lonlat to extends correctly modifies right and top"); // obj is point @@ -521,7 +521,7 @@ t.ok( ((bounds.left == object.x) && (bounds.bottom == object.y) && (bounds.right == originalBounds.right) && - (bounds.top == originalBounds.top)), "obj Point to extends correclty modifies left and bottom"); + (bounds.top == originalBounds.top)), "obj Point to extends correctly modifies left and bottom"); //right, top bounds = originalBounds.clone(); @@ -533,7 +533,7 @@ t.ok( ((bounds.left == originalBounds.left) && (bounds.bottom == originalBounds.bottom) && (bounds.right == object.x) && - (bounds.top == object.y)), "obj Point to extends correclty modifies right and top"); + (bounds.top == object.y)), "obj Point to extends correctly modifies right and top"); } From d65f604b253bcf4d6d1abbcc438dc689b5eb4cc8 Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Sat, 23 Mar 2013 11:33:17 +0100 Subject: [PATCH 2/5] tests/Bounds: Fixed indentation and whitespace --- tests/BaseTypes/Bounds.html | 189 ++++++++++++++++++------------------ 1 file changed, 95 insertions(+), 94 deletions(-) diff --git a/tests/BaseTypes/Bounds.html b/tests/BaseTypes/Bounds.html index c03b57c82a..3ef7510f98 100644 --- a/tests/BaseTypes/Bounds.html +++ b/tests/BaseTypes/Bounds.html @@ -2,10 +2,10 @@