From 094cfd563e48fe00a3e95130dfd869d97ca0140c Mon Sep 17 00:00:00 2001 From: Adrian Cole Date: Mon, 19 Dec 2011 22:04:29 -0800 Subject: [PATCH] disabled public read test --- .../integration/HPCloudObjectStorageContainerLiveTest.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/providers/hpcloud-object-storage/src/test/java/org/jclouds/hpcloud/object/storage/blobstore/integration/HPCloudObjectStorageContainerLiveTest.java b/providers/hpcloud-object-storage/src/test/java/org/jclouds/hpcloud/object/storage/blobstore/integration/HPCloudObjectStorageContainerLiveTest.java index 4acb6e7986..8cf28bb971 100644 --- a/providers/hpcloud-object-storage/src/test/java/org/jclouds/hpcloud/object/storage/blobstore/integration/HPCloudObjectStorageContainerLiveTest.java +++ b/providers/hpcloud-object-storage/src/test/java/org/jclouds/hpcloud/object/storage/blobstore/integration/HPCloudObjectStorageContainerLiveTest.java @@ -18,6 +18,9 @@ */ package org.jclouds.hpcloud.object.storage.blobstore.integration; +import java.io.IOException; +import java.net.MalformedURLException; + import org.jclouds.blobstore.integration.internal.BaseContainerLiveTest; import org.testng.annotations.Test; @@ -27,4 +30,8 @@ import org.testng.annotations.Test; @Test(groups = { "live" }) public class HPCloudObjectStorageContainerLiveTest extends BaseContainerLiveTest { + @Test(expectedExceptions=UnsupportedOperationException.class) + public void testPublicAccess() throws MalformedURLException, InterruptedException, IOException { + super.testPublicAccess(); + } }