tests/Bounds: Fixed typos

This commit is contained in:
Tobias Bieniek
2013-03-23 11:27:14 +01:00
parent 9a06ec47f6
commit 03735b74ab

View File

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