]> source.dussan.org Git - jquery.git/commitdiff
Made a tweak to the fx queue test (was randomly failing in its current incarnation).
authorJohn Resig <jeresig@gmail.com>
Tue, 21 Jul 2009 20:06:05 +0000 (20:06 +0000)
committerJohn Resig <jeresig@gmail.com>
Tue, 21 Jul 2009 20:06:05 +0000 (20:06 +0000)
test/unit/fx.js

index 978ef7178dc92ecfd692dd78fca2e8c662b463ca..c6da80d60dd0f434f0e40e3008d4550ebf936802 100644 (file)
@@ -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" );