summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAlexander Early <aearly@fluid.com>2015-06-01 16:21:18 -0700
committerAlexander Early <aearly@fluid.com>2015-06-01 16:21:18 -0700
commit62bba6ee03626ec243e61b2aa79bae36af7ac28b (patch)
treea220c5d61bdbd10e017a38bf2cbd182497403060 /test
parent2346f40593f81779ea6e5ce7dd17caffa63b47de (diff)
downloadasync-62bba6ee03626ec243e61b2aa79bae36af7ac28b.tar.gz
increase timeout for flaky test
Diffstat (limited to 'test')
-rwxr-xr-xtest/test-async.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test-async.js b/test/test-async.js
index 5b76a83..113ac07 100755
--- a/test/test-async.js
+++ b/test/test-async.js
@@ -3152,7 +3152,7 @@ exports['queue'] = {
var q = async.queue(function (task, callback) {
setTimeout(function () {
callback();
- }, 20);
+ }, 40);
}, 2);
q.pause();
@@ -3166,7 +3166,7 @@ exports['queue'] = {
test.equal(q.tasks.length, 1);
test.equal(q.running(), 2);
q.resume();
- }, 10);
+ }, 15);
q.drain = function () {
test.done();