Skip to content

Commit

Permalink
Correct message of unit test. No functional change.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.openlayers.org/trunk/openlayers@12182 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
  • Loading branch information
marcjansen committed Jul 23, 2011
1 parent 912c1d5 commit 6d968d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/BaseTypes/LonLat.html
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 6d968d6

Please sign in to comment.