Skip to content

Commit f663917

Browse files
committed
Add missing "done" arg in test/kvao/ttl.suite
Backport #1086
1 parent d385dfa commit f663917

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/kvao/ttl.suite.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ module.exports = function(dataSourceFactory, connectorCapabilities) {
2121
});
2222

2323
it('gets TTL when key with unexpired TTL exists - Callback API',
24-
function() {
24+
function(done) {
2525
CacheItem.set('a-key', 'a-value', { ttl: 1000 }, function(err) {
2626
if (err) return done(err);
2727
CacheItem.ttl('a-key', function(err, ttl) {

0 commit comments

Comments
 (0)