fix selfhost migrate test

This commit is contained in:
Johannes Zellner 2016-07-29 20:06:03 +02:00
parent cef2317b7d
commit 827aa6be34
1 changed files with 2 additions and 2 deletions

View File

@ -222,11 +222,11 @@ describe('Selfhost EC2 Cloudron creation', function () {
'--secret-access-key ' + AWS_ACCESS_SECRET,
];
var out = machine('migrate ' + params.join(' '));
var out = machine('migrate ec2 ' + params.join(' '));
if (out.stdout.indexOf('You can now use your Cloudron at') === -1) {
console.error(out.stdout, out.stderr);
assert(false, 'Update failed');
assert(false, 'Migrate failed');
}
});