From db8226229637b00dda8757e8b96fd8362cf67a70 Mon Sep 17 00:00:00 2001 From: John Resig Date: Tue, 21 Jul 2009 20:06:05 +0000 Subject: [PATCH] Made a tweak to the fx queue test (was randomly failing in its current incarnation). --- test/unit/fx.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/fx.js b/test/unit/fx.js index 978ef71..c6da80d 100644 --- a/test/unit/fx.js +++ b/test/unit/fx.js @@ -61,7 +61,7 @@ test("animate option (queue === false)", function () { // short duration and out of queue so should finish first order.push(1); }}); - $foo.animate({height:'100px'}, 10, function() { + $foo.animate({height:'100px'}, 100, function() { // queued behind the first animation so should finish third order.push(3); isSet( order, [ 1, 2, 3], "Animations finished in the correct order" ); -- 1.7.10.4