From 4e77c9648a83b11c7b3679719cd893493a8c7455 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Lemoine?= Date: Mon, 20 Jul 2009 08:53:00 +0000 Subject: [PATCH] add missing semi-colons, no functional change git-svn-id: http://svn.openlayers.org/trunk/openlayers@9568 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- tests/Control/WMSGetFeatureInfo.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/Control/WMSGetFeatureInfo.html b/tests/Control/WMSGetFeatureInfo.html index ceefddf7e4..570e93fa7c 100644 --- a/tests/Control/WMSGetFeatureInfo.html +++ b/tests/Control/WMSGetFeatureInfo.html @@ -42,11 +42,11 @@ click.handler.deactivate = function() { t.ok(true, "control.deactivate calls deactivate on click handler"); - } + }; hover.handler.deactivate = function() { t.ok(true, "control.deactivate calls deactivate on hover handler"); - } + }; click.destroy(); hover.destroy(); } @@ -65,7 +65,7 @@ "x position is as expected"); t.eq(position.y, 50, "y position is as expected"); - } + }; control.getInfoForClick({xy: {x: 50, y: 50}}); control.getInfoForHover({xy: {x: 50, y: 50}}); @@ -125,12 +125,12 @@ t.ok(true, "control.deactivate calls deactivate on click handler"); OpenLayers.Handler.Click.prototype.deactivate.apply(this, arguments); - } + }; hover.handler.deactivate = function() { t.ok(true, "control.deactivate calls deactivate on hover handler"); OpenLayers.Handler.Hover.prototype.deactivate.apply(this, arguments); - } + }; click.deactivate(); hover.deactivate(); }