Skip to content

Commit

Permalink
Add missing return in KVAO keys test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
simonhoibm committed Jan 12, 2017
1 parent 736a4ad commit 188fb10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/kvao/keys.suite.js
Expand Up @@ -45,7 +45,7 @@ module.exports = function(dataSourceFactory, connectorCapabilities) {

it('returns keys of the given model only', function() {
let AnotherModel;
helpers.givenModel(dataSourceFactory, 'AnotherModel')
return helpers.givenModel(dataSourceFactory, 'AnotherModel')
.then(ModelCtor => AnotherModel = ModelCtor)
.then(() => helpers.givenKeys(CacheItem, ['key1', 'key2']))
.then(() => helpers.givenKeys(AnotherModel, ['otherKey1', 'otherKey2']))
Expand Down

0 comments on commit 188fb10

Please sign in to comment.