From 43e6d22149306be9df5034730e1f269b8b496931 Mon Sep 17 00:00:00 2001 From: andreisavu Date: Tue, 15 Nov 2011 11:16:49 +0200 Subject: [PATCH] Disable testCreateAndRunAService because it's never going to pass without an internet connection --- .../compute/CloudStackComputeServiceLiveTest.java | 8 ++++++++ 1 file changed, 8 insertions(+) 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(); + } }