Skip to content

Commit

Permalink
increase timeout for flaky test
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Early committed Jun 1, 2015
1 parent 2346f40 commit 62bba6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test-async.js
Expand Up @@ -3152,7 +3152,7 @@ exports['queue'] = {
var q = async.queue(function (task, callback) {
setTimeout(function () {
callback();
}, 20);
}, 40);
}, 2);
q.pause();

Expand All @@ -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();
Expand Down

0 comments on commit 62bba6e

Please sign in to comment.