Skip to content

Commit d2a20a1

Browse files
authored
Merge pull request #1086 from strongloop/fix/kvao-ttl-test
Add missing "done" arg in test/kvao/ttl.suite
2 parents fc06d35 + a438c72 commit d2a20a1

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)