added location check for hpcloud for vegas

This commit is contained in:
Adrian Cole 2011-12-19 17:39:18 -08:00
parent 2765a576e8
commit 0244e123c2
1 changed files with 8 additions and 0 deletions

View File

@ -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<String> getIso3166Codes() {
return ImmutableSet.<String> of("US-NV");
}
}