Skip to content

Commit da8c260

Browse files
author
Ruben Bridgewater
committed
Reduce timeouts
1 parent 463c7fd commit da8c260

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-
}, 1500);
27+
}, 1100);
2828
});
2929

3030
afterEach(function () {

test/commands/ttl.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ describe("The 'ttl' method", function () {
2828
assert.ok(ttl > 50 && ttl <= 100);
2929
return done(err);
3030
});
31-
}, 500);
31+
}, 200);
3232
});
3333

3434
afterEach(function () {

0 commit comments

Comments
 (0)