> +import org.apache.jclouds.profitbricks.rest.domain.Server;
> +import org.apache.jclouds.profitbricks.rest.ids.ServerRef;
> +import
> org.apache.jclouds.profitbricks.rest.internal.BaseProfitBricksLiveTest;
> +import org.testng.annotations.AfterClass;
> +import org.testng.annotations.BeforeClass;
> +import org.testng.annotations.Test;
> +import static org.testng.Assert.assertEquals;
> +import static org.testng.Assert.assertFalse;
> +import static org.testng.Assert.assertNotNull;
> +
> +@Test(groups = "live", testName = "NicApiLiveTest")
> +public class NicApiLiveTest extends BaseProfitBricksLiveTest {
> +
> + DataCenter dataCenter;
> + Server testServer;
> + Nic testNic;
Make all these variables private unless there is a real need to have it
package-visible.
---
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/249/files/a17eac2160481358b8735aab30ecf12d672b341b#r56995718