This commit is contained in:
Girish Ramakrishnan 2016-04-15 20:35:35 -07:00
parent c560284681
commit 8a0ebb0b41
1 changed files with 2 additions and 2 deletions

View File

@ -60,12 +60,12 @@ describe('Application update test', function () {
var location = 'test' + (Math.random() * 10000).toFixed();
it('can install app', function () {
var manifest = appStore.getManifest(common.APP_ID, common.APP_OLD_VERSION);
var manifest = appStore.getManifest(APP_ID, APP_OLD_VERSION);
appId = cloudron.installApp(location, manifest);
});
it('update the app', function () {
var manifest = appStore.getManifest(common.APP_ID, common.APP_NEW_VERSION);
var manifest = appStore.getManifest(APP_ID, APP_NEW_VERSION);
cloudron.updateApp(appId, manifest);
});