add .enc extension

This commit is contained in:
Girish Ramakrishnan 2017-04-24 11:48:50 -07:00
parent 43f7ef0852
commit 87c7c3cdb9
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 + '.tar.gz');
appStore.restore(box.id, backupInfo.id + '.tar.gz.enc');
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 + '.tar.gz');
appStore.restore(box.id, backupInfo.id + '.tar.gz.enc');
box = appStore.waitForCloudron(box.id);
});