summaryrefslogtreecommitdiff
path: root/mocha_test/applyEach.js
diff options
context:
space:
mode:
Diffstat (limited to 'mocha_test/applyEach.js')
-rw-r--r--mocha_test/applyEach.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/mocha_test/applyEach.js b/mocha_test/applyEach.js
index 6138d3f..ca5ada3 100644
--- a/mocha_test/applyEach.js
+++ b/mocha_test/applyEach.js
@@ -11,21 +11,21 @@ describe('applyEach', function () {
setTimeout(function () {
call_order.push('one');
cb(null, 1);
- }, 10);
+ }, 12);
};
var two = function (val, cb) {
expect(val).to.equal(5);
setTimeout(function () {
call_order.push('two');
cb(null, 2);
- }, 5);
+ }, 2);
};
var three = function (val, cb) {
expect(val).to.equal(5);
setTimeout(function () {
call_order.push('three');
cb(null, 3);
- }, 15);
+ }, 18);
};
async.applyEach([one, two, three], 5, function (err, results) {
assert(err === null, err + " passed instead of 'null'");