linting for tests to pass

This commit is contained in:
Julian Lam
2017-02-26 16:03:26 -05:00
parent d75cc60e76
commit a2662f8b69
7 changed files with 31 additions and 29 deletions

View File

@@ -59,6 +59,10 @@ Upgrade.check = function (callback) {
}, []);
db.getSortedSetRange('schemaLog', 0, -1, function (err, executed) {
if (err) {
return callback(err);
}
var remainder = all.filter(function (name) {
return executed.indexOf(name) === -1;
});