The appstore api wants box backupIds with extension

This commit is contained in:
Johannes Zellner 2017-04-24 16:04:57 +02:00
parent 6a182994b6
commit e60217145b
2 changed files with 2 additions and 2 deletions

View File

@ -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);
});

View File

@ -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);
});