diff --git a/test/app-update-test.js b/test/app-update-test.js index 1ccd7c0..5002381 100644 --- a/test/app-update-test.js +++ b/test/app-update-test.js @@ -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); });