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"); + } }