Skip to content

Commit 71ea42f

Browse files
author
Benjamin Coe
committed
fix linting and timeout issue
1 parent 20bc05a commit 71ea42f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/commands/expire.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ describe("The 'expire' method", function () {
2424
client.EXPIRE(["expiry key", "1"], helper.isNumber(1));
2525
setTimeout(function () {
2626
client.exists(["expiry key"], helper.isNumber(0, done));
27-
}, 2000);
27+
}, 3000);
2828
});
2929

3030
afterEach(function () {

test/node_redis.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@ describe("The node_redis client", function () {
662662
// TODO: figure out why we emit an error on
663663
// even though we've enabled the offline queue.
664664
if (process.platform === 'win32') return;
665-
if (err) return done(err)
665+
if (err) return done(err);
666666
});
667667

668668
return setTimeout(function(){

0 commit comments

Comments
 (0)