1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-07 13:22:56 +03:00

index.js: fix enable_offline_queue default. tests pass

This commit is contained in:
DTrejo
2012-07-05 19:18:26 -07:00
parent a532e65ccf
commit 1b0b2dc87d
2 changed files with 8 additions and 1 deletions

View File

@@ -1415,6 +1415,9 @@ tests.ENABLE_OFFLINE_QUEUE_FALSE = function () {
cli.set(name, name, function (err) {
// should callback with an error
assert.ok(err);
setTimeout(function () {
next(name);
}, 50);
});
});
};