From 0244e123c2fff3b840617ce5c58efa2aa208077d Mon Sep 17 00:00:00 2001 From: Adrian Cole Date: Mon, 19 Dec 2011 17:39:18 -0800 Subject: [PATCH] added location check for hpcloud for vegas --- .../HPCloudObjectStorageServiceIntegrationLiveTest.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/providers/hpcloud-object-storage/src/test/java/org/jclouds/hpcloud/object/storage/blobstore/integration/HPCloudObjectStorageServiceIntegrationLiveTest.java b/providers/hpcloud-object-storage/src/test/java/org/jclouds/hpcloud/object/storage/blobstore/integration/HPCloudObjectStorageServiceIntegrationLiveTest.java index f2d438efe1..6bfe683cce 100644 --- a/providers/hpcloud-object-storage/src/test/java/org/jclouds/hpcloud/object/storage/blobstore/integration/HPCloudObjectStorageServiceIntegrationLiveTest.java +++ b/providers/hpcloud-object-storage/src/test/java/org/jclouds/hpcloud/object/storage/blobstore/integration/HPCloudObjectStorageServiceIntegrationLiveTest.java @@ -18,13 +18,21 @@ */ package org.jclouds.hpcloud.object.storage.blobstore.integration; +import java.util.Set; + import org.jclouds.openstack.swift.blobstore.integration.SwiftServiceIntegrationLiveTest; import org.testng.annotations.Test; +import com.google.common.collect.ImmutableSet; + /** * @author Jeremy Daggett */ @Test(groups = "live") public class HPCloudObjectStorageServiceIntegrationLiveTest extends SwiftServiceIntegrationLiveTest { + @Override + protected Set getIso3166Codes() { + return ImmutableSet. of("US-NV"); + } }