From 6d968d648dae40e66c3ec3b76069f36fcb383b53 Mon Sep 17 00:00:00 2001 From: Marc Jansen Date: Sat, 23 Jul 2011 21:24:31 +0000 Subject: [PATCH] Correct message of unit test. No functional change. git-svn-id: http://svn.openlayers.org/trunk/openlayers@12182 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- tests/BaseTypes/LonLat.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/BaseTypes/LonLat.html b/tests/BaseTypes/LonLat.html index cc1cd5675c..c9d790fb7c 100644 --- a/tests/BaseTypes/LonLat.html +++ b/tests/BaseTypes/LonLat.html @@ -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");