> +import org.testng.annotations.Test;
> +
> +@Test(groups = "live", testName = "ProfitBricksTemplateBuilderLiveTest")
> +public class ProfitBricksTemplateBuilderLiveTest extends
> BaseTemplateBuilderLiveTest {
> +
> + private static final String TEST_DC_NAME = "templateBuilderLiveTest-" +
> System.currentTimeMillis();
> + private DataCenter dataCenter;
> +
> + public ProfitBricksTemplateBuilderLiveTest() {
> + this.provider = "profitbricks-rest";
> + System.setProperty("http.proxyHost", "127.0.0.1");
> + System.setProperty("https.proxyHost", "127.0.0.1");
> + System.setProperty("http.proxyPort", "8888");
> + System.setProperty("https.proxyPort", "8888");
> + System.setProperty("javax.net.ssl.trustStore", "C:\\Program
> Files\\Java\\jdk1.8.0_73\\jre\\lib\\security\\FiddlerKeystore");
> + System.setProperty("javax.net.ssl.trustStorePassword", "testme");
Remove all these properties.
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/292/files/9251ab7434bcafb1dcbec5a718acc3c24517c94d#r73312984