This commit is contained in:
Geoffrey Goh
2016-01-18 16:56:37 -08:00
parent a3e3936d06
commit a44c7923ca
19 changed files with 162 additions and 130 deletions

View File

@@ -13,7 +13,12 @@ function createMockAcquisitionSdk(serverPackage, localPackage, expectedDeploymen
callback(/*err:*/ null, serverPackage);
};
AcquisitionManager.prototype.reportStatus = (status, message, callback) => {
AcquisitionManager.prototype.reportStatusDeploy = (package, status, callback) => {
// No-op and return success.
callback(null, null);
};
AcquisitionManager.prototype.reportStatusDownload = (package, callback) => {
// No-op and return success.
callback(null, null);
};