async: fixed errors in async-tests.ts related to switch on TS 0.9.5

This commit is contained in:
Igor Oleinikov 2013-12-06 15:19:46 +04:00
parent b3e31cb848
commit ef86830809

View File

@ -135,7 +135,7 @@ async.waterfall([
], function (err, result) { });
var q = async.queue(function (task, callback) {
var q = async.queue(function (task: any, callback) {
console.log('hello ' + task.name);
callback();
}, 2);