summaryrefslogtreecommitdiff
path: root/test/test-async.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/test-async.js')
-rw-r--r--test/test-async.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test-async.js b/test/test-async.js
index 545a005..887e17c 100644
--- a/test/test-async.js
+++ b/test/test-async.js
@@ -559,7 +559,7 @@ exports['forEachLimit limit exceeds size'] = function(test){
setTimeout(function(){
args.push(x);
callback();
- }, x*5);
+ }, x*25);
}, function(err){
test.same(args, arr);
test.done();
@@ -573,7 +573,7 @@ exports['forEachLimit limit equal size'] = function(test){
setTimeout(function(){
args.push(x);
callback();
- }, x*5);
+ }, x*25);
}, function(err){
test.same(args, arr);
test.done();