From: Scott González Date: Tue, 8 Jan 2013 12:54:11 +0000 (-0500) Subject: Core: Resume focus test based on the event, not the callback. X-Git-Tag: 1.10.0-rc.1~9 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=48a790a327fef7773f7686e4b42e4c9ef67a84ad;p=jquery-ui.git Core: Resume focus test based on the event, not the callback. --- diff --git a/tests/unit/core/core.js b/tests/unit/core/core.js index 86b95e157..78a225338 100644 --- a/tests/unit/core/core.js +++ b/tests/unit/core/core.js @@ -19,10 +19,10 @@ asyncTest( "focus", function() { $( "#inputTabindex0" ) .one( "focus", function() { ok( true, "event triggered" ); + start(); }) .focus( 500, function() { ok( true, "callback triggered" ); - start(); }); });