Skip to content

Commit

Permalink
Merge pull request #1222 from strongloop/fix-missing-return-for-kvao-…
Browse files Browse the repository at this point in the history
…delete-all

Add missing return for KVAO delete all
  • Loading branch information
superkhau committed Jan 13, 2017
2 parents 22f2abf + 9a0d34a commit 5a72833
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/kvao/delete-all.suite.js
Expand Up @@ -20,7 +20,7 @@ module.exports = function(dataSourceFactory, connectorCapabilities) {

it('does not remove data from other existing models', () => {
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, ['key3', 'key4']))
Expand Down

0 comments on commit 5a72833

Please sign in to comment.