[OpenLayers-Commits] r12182 - trunk/openlayers/tests/BaseTypes
commits-20090109 at openlayers.org
commits-20090109 at openlayers.org
Sat Jul 23 17:24:32 EDT 2011
Author: marcjansen
Date: 2011-07-23 14:24:31 -0700 (Sat, 23 Jul 2011)
New Revision: 12182
Modified:
trunk/openlayers/tests/BaseTypes/LonLat.html
Log:
Correct message of unit test. No functional change.
Modified: trunk/openlayers/tests/BaseTypes/LonLat.html
===================================================================
--- trunk/openlayers/tests/BaseTypes/LonLat.html 2011-07-23 20:12:02 UTC (rev 12181)
+++ trunk/openlayers/tests/BaseTypes/LonLat.html 2011-07-23 21:24:31 UTC (rev 12182)
@@ -107,7 +107,7 @@
function test_LonLat_fromString(t) {
t.plan( 2 );
lonlat = OpenLayers.LonLat.fromString("6,5");
- t.ok( lonlat instanceof OpenLayers.LonLat, "new OpenLayers.LonLat returns LonLat object" );
+ t.ok( lonlat instanceof OpenLayers.LonLat, "OpenLayers.LonLat.fromString() returns LonLat object" );
var ll = new OpenLayers.LonLat(6, 5);
t.ok( lonlat.equals(ll), "lonlat is set correctly");
More information about the Commits
mailing list