From 8a0ebb0b4191eff72022d3014b8814cd6399a296 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Fri, 15 Apr 2016 20:35:35 -0700 Subject: [PATCH] typo --- test/app-update-test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); });