aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/unit/effects.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/effects.js b/test/unit/effects.js
index 6d200b534..806192ea0 100644
--- a/test/unit/effects.js
+++ b/test/unit/effects.js
@@ -598,7 +598,7 @@ test("stop() - several in queue", function() {
var w = 0;
$foo.hide().css( "width", 200 ).css("width");
- $foo.animate({ "width": "show" }, 1000);
+ $foo.animate({ "width": "show" }, 1500);
$foo.animate({ "width": "hide" }, 1000);
$foo.animate({ "width": "show" }, 1000);
setTimeout(function(){
@@ -612,7 +612,7 @@ test("stop() - several in queue", function() {
$foo.stop(true);
start();
- }, 100);
+ }, 200);
});
test("stop(clearQueue)", function() {