From e60217145b66e0830f5c4915560c5628df04f2f1 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Mon, 24 Apr 2017 16:04:57 +0200 Subject: [PATCH] The appstore api wants box backupIds with extension --- test/cloudron-backup-test.js | 2 +- test/cloudron-migrate-test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/cloudron-backup-test.js b/test/cloudron-backup-test.js index 8def785..a9d4b22 100644 --- a/test/cloudron-backup-test.js +++ b/test/cloudron-backup-test.js @@ -148,7 +148,7 @@ describe('Cloudron backup testing', function () { }); it('can restore the box', function () { - appStore.restore(box.id, backupInfo.id); + appStore.restore(box.id, backupInfo.id + '.tar.gz'); box = appStore.waitForCloudron(box.id); }); diff --git a/test/cloudron-migrate-test.js b/test/cloudron-migrate-test.js index 7f9c364..46de3e3 100644 --- a/test/cloudron-migrate-test.js +++ b/test/cloudron-migrate-test.js @@ -132,7 +132,7 @@ describe('Custom domain test', function () { }); it('can restore the box', function () { - appStore.restore(box.id, backupInfo.id); + appStore.restore(box.id, backupInfo.id + '.tar.gz'); box = appStore.waitForCloudron(box.id); });