diff options
author | John Resig <jeresig@gmail.com> | 2009-07-21 20:06:05 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2009-07-21 20:06:05 +0000 |
commit | db8226229637b00dda8757e8b96fd8362cf67a70 (patch) | |
tree | 96d9945670c40bb63d849050a2966a8f64ff3b37 /test/unit/fx.js | |
parent | 7e06b9b70f23dffd9c74047895b53b28af0dafc6 (diff) | |
download | jquery-db8226229637b00dda8757e8b96fd8362cf67a70.tar.gz jquery-db8226229637b00dda8757e8b96fd8362cf67a70.zip |
Made a tweak to the fx queue test (was randomly failing in its current incarnation).
Diffstat (limited to 'test/unit/fx.js')
-rw-r--r-- | test/unit/fx.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/fx.js b/test/unit/fx.js index 978ef7178..c6da80d60 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" ); |