From 20e2dcf2c4fca83b498f3db474af10c44b57df01 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Fri, 9 Sep 2016 16:38:59 +0200 Subject: [PATCH] Fix the digitalocean tests --- test/selfhost-digitalocean-test.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/selfhost-digitalocean-test.js b/test/selfhost-digitalocean-test.js index 5b771af..365d2cc 100644 --- a/test/selfhost-digitalocean-test.js +++ b/test/selfhost-digitalocean-test.js @@ -241,9 +241,8 @@ describe('Selfhost EC2 Cloudron creation', function () { it('can migrate cloudron', function () { var params = [ '--fqdn ' + SELFHOST_DOMAIN, - '--ssh-key ' + SSH_KEY, - '--access-key-id ' + AWS_ACCESS_KEY, - '--secret-access-key ' + AWS_ACCESS_SECRET, + '--token ' + DO_TOKEN, + '--ssh-key ' + SSH_KEY ]; var out = machine('migrate digitalocean ' + params.join(' '));