From 48a790a327fef7773f7686e4b42e4c9ef67a84ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Tue, 8 Jan 2013 07:54:11 -0500 Subject: [PATCH] Core: Resume focus test based on the event, not the callback. --- tests/unit/core/core.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }); });