From f663917fe94fda6ce567c9503361a2652813aa6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Bajto=C5=A1?= Date: Thu, 8 Sep 2016 10:22:27 +0200 Subject: [PATCH] Add missing "done" arg in test/kvao/ttl.suite Backport #1086 --- test/kvao/ttl.suite.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/kvao/ttl.suite.js b/test/kvao/ttl.suite.js index 50261596..e385c3c8 100644 --- a/test/kvao/ttl.suite.js +++ b/test/kvao/ttl.suite.js @@ -21,7 +21,7 @@ module.exports = function(dataSourceFactory, connectorCapabilities) { }); it('gets TTL when key with unexpired TTL exists - Callback API', - function() { + function(done) { CacheItem.set('a-key', 'a-value', { ttl: 1000 }, function(err) { if (err) return done(err); CacheItem.ttl('a-key', function(err, ttl) {