updated password on ecloud

This commit is contained in:
Adrian Cole 2011-12-21 03:10:29 -08:00
parent 208c474969
commit 2aadb21b03
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ import static org.jclouds.trmk.vcloud_0_8.options.InstantiateVAppTemplateOptions
import java.util.Properties;
import java.util.Map.Entry;
import org.jclouds.domain.Credentials;
import org.jclouds.domain.LoginCredentials;
import org.jclouds.net.IPSocket;
import org.jclouds.ssh.SshClient;
import org.jclouds.trmk.ecloud.suppliers.TerremarkECloudInternetServiceAndPublicIpAddressSupplier;
@ -65,7 +65,7 @@ public class TerremarkECloudClientLiveTest extends TerremarkClientLiveTest {
@Override
protected SshClient getConnectionFor(IPSocket socket) {
return sshFactory.create(socket, new Credentials("ecloud", "$Ep455l0ud!2"));
return sshFactory.create(socket, LoginCredentials.builder().user("ecloud").password("TmrkCl0ud1s#1!").build());
}
@Override