diff --git a/apis/cloudstack/src/test/java/org/jclouds/cloudstack/compute/CloudStackComputeServiceLiveTest.java b/apis/cloudstack/src/test/java/org/jclouds/cloudstack/compute/CloudStackComputeServiceLiveTest.java index 2fa04f6f2f..1a4035ab18 100644 --- a/apis/cloudstack/src/test/java/org/jclouds/cloudstack/compute/CloudStackComputeServiceLiveTest.java +++ b/apis/cloudstack/src/test/java/org/jclouds/cloudstack/compute/CloudStackComputeServiceLiveTest.java @@ -61,4 +61,12 @@ public class CloudStackComputeServiceLiveTest extends BaseComputeServiceLiveTest assert node.getUserMetadata().equals(ImmutableMap. of()) : String.format( "node userMetadata did not match %s %s", userMetadata, node); } + + @Override + @Test(enabled = false) + public void testCreateAndRunAService() throws Exception { + /* Disabling this test because it's never going to pass if we + don't have internet connectivity from the cloudstack environment */ + super.testCreateAndRunAService(); + } }