You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jclouds.apache.org by na...@apache.org on 2015/09/21 17:09:10 UTC

jclouds-labs-google git commit: GCE hardware profiles might not have volumes

Repository: jclouds-labs-google
Updated Branches:
  refs/heads/1.9.x 328b96667 -> 01b788d00


GCE hardware profiles might not have volumes


Project: http://git-wip-us.apache.org/repos/asf/jclouds-labs-google/repo
Commit: http://git-wip-us.apache.org/repos/asf/jclouds-labs-google/commit/01b788d0
Tree: http://git-wip-us.apache.org/repos/asf/jclouds-labs-google/tree/01b788d0
Diff: http://git-wip-us.apache.org/repos/asf/jclouds-labs-google/diff/01b788d0

Branch: refs/heads/1.9.x
Commit: 01b788d00095e935cfe176a19ac317032a1cf837
Parents: 328b966
Author: Ignasi Barrera <na...@apache.org>
Authored: Mon Sep 21 11:28:31 2015 +0200
Committer: Ignasi Barrera <na...@apache.org>
Committed: Mon Sep 21 11:28:31 2015 +0200

----------------------------------------------------------------------
 .../compute/GoogleComputeEngineServiceLiveTest.java             | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jclouds-labs-google/blob/01b788d0/google-compute-engine/src/test/java/org/jclouds/googlecomputeengine/compute/GoogleComputeEngineServiceLiveTest.java
----------------------------------------------------------------------
diff --git a/google-compute-engine/src/test/java/org/jclouds/googlecomputeengine/compute/GoogleComputeEngineServiceLiveTest.java b/google-compute-engine/src/test/java/org/jclouds/googlecomputeengine/compute/GoogleComputeEngineServiceLiveTest.java
index 6204a44..b4ee392 100644
--- a/google-compute-engine/src/test/java/org/jclouds/googlecomputeengine/compute/GoogleComputeEngineServiceLiveTest.java
+++ b/google-compute-engine/src/test/java/org/jclouds/googlecomputeengine/compute/GoogleComputeEngineServiceLiveTest.java
@@ -145,4 +145,9 @@ public class GoogleComputeEngineServiceLiveTest extends BaseComputeServiceLiveTe
       String path = link.getPath();
       return path.substring(path.lastIndexOf('/') + 1);
    }
+
+   @Override
+   protected void checkVolumes(Hardware hardware) {
+      // Hardware profiles might not have volumes.
+   }
 }