> +import org.jclouds.azurecompute.arm.domain.SKU; > +import org.jclouds.azurecompute.arm.domain.Version; > +import org.jclouds.azurecompute.arm.internal.AbstractAzureComputeApiLiveTest; > +import org.testng.annotations.Test; > + > +import static org.testng.Assert.assertTrue; > + > +import java.util.List; > + > +@Test(groups = "live", testName = "OSImageApiLiveTest") > +public class OSImageApiLiveTest extends AbstractAzureComputeApiLiveTest { > + > + @Test > + public void testPublisher() { > + List<Publisher> publishers = api().listPublishers(); > + System.out.println(publishers.size());
Remove all system outs. --- 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/273/files/74f8e9bf66e7427298c5c3c9567aa7d8284e0987#r64482205