Remove backupDone from storage interface

This is only used by caas
This commit is contained in:
Girish Ramakrishnan
2018-07-27 12:07:47 -07:00
parent 3d22458f9b
commit df98847535
6 changed files with 30 additions and 71 deletions

View File

@@ -9,8 +9,6 @@ exports = module.exports = {
remove: remove,
removeDir: removeDir,
backupDone: backupDone,
testConfig: testConfig,
// Used to mock GCS
@@ -315,11 +313,3 @@ function testConfig(apiConfig, callback) {
});
}
function backupDone(apiConfig, backupId, appBackupIds, callback) {
assert.strictEqual(typeof apiConfig, 'object');
assert.strictEqual(typeof backupId, 'string');
assert(Array.isArray(appBackupIds));
assert.strictEqual(typeof callback, 'function');
callback();
}