Repository: jclouds-labs
Updated Branches:
  refs/heads/master f0297bdc2 -> 7cb876b42


Correct Cache-Control SkipException message


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

Branch: refs/heads/master
Commit: 7cb876b42fd929dc8b0154a8e0cc9c749af1a34d
Parents: f0297bd
Author: Andrew Gaul <[email protected]>
Authored: Fri Apr 7 19:48:54 2017 -0700
Committer: Andrew Gaul <[email protected]>
Committed: Fri Apr 7 19:53:09 2017 -0700

----------------------------------------------------------------------
 .../integration/B2BlobIntegrationLiveTest.java        | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jclouds-labs/blob/7cb876b4/b2/src/test/java/org/jclouds/b2/blobstore/integration/B2BlobIntegrationLiveTest.java
----------------------------------------------------------------------
diff --git 
a/b2/src/test/java/org/jclouds/b2/blobstore/integration/B2BlobIntegrationLiveTest.java
 
b/b2/src/test/java/org/jclouds/b2/blobstore/integration/B2BlobIntegrationLiveTest.java
index 846b25b..fa0f6ae 100644
--- 
a/b2/src/test/java/org/jclouds/b2/blobstore/integration/B2BlobIntegrationLiveTest.java
+++ 
b/b2/src/test/java/org/jclouds/b2/blobstore/integration/B2BlobIntegrationLiveTest.java
@@ -68,7 +68,7 @@ public final class B2BlobIntegrationLiveTest extends 
BaseBlobIntegrationTest {
          super.testCopyBlobCopyMetadata();
          failBecauseExceptionWasNotThrown(IllegalArgumentException.class);
       } catch (IllegalArgumentException iae) {
-         throw new SkipException("B2 requires repeatable payloads to calculate 
SHA1 hash", iae);
+         throw new SkipException("B2 does not support the Cache-Control 
header", iae);
       }
    }
 
@@ -78,7 +78,7 @@ public final class B2BlobIntegrationLiveTest extends 
BaseBlobIntegrationTest {
          super.testCopyBlobReplaceMetadata();
          failBecauseExceptionWasNotThrown(IllegalArgumentException.class);
       } catch (IllegalArgumentException iae) {
-         throw new SkipException("B2 requires repeatable payloads to calculate 
SHA1 hash", iae);
+         throw new SkipException("B2 does not support the Cache-Control 
header", iae);
       }
    }
 
@@ -88,7 +88,7 @@ public final class B2BlobIntegrationLiveTest extends 
BaseBlobIntegrationTest {
          super.testCopyIfMatch();
          failBecauseExceptionWasNotThrown(IllegalArgumentException.class);
       } catch (IllegalArgumentException iae) {
-         throw new SkipException("B2 requires repeatable payloads to calculate 
SHA1 hash", iae);
+         throw new SkipException("B2 does not support the Cache-Control 
header", iae);
       }
    }
 
@@ -98,7 +98,7 @@ public final class B2BlobIntegrationLiveTest extends 
BaseBlobIntegrationTest {
          super.testCopyIfNoneMatch();
          failBecauseExceptionWasNotThrown(IllegalArgumentException.class);
       } catch (IllegalArgumentException iae) {
-         throw new SkipException("B2 requires repeatable payloads to calculate 
SHA1 hash", iae);
+         throw new SkipException("B2 does not support the Cache-Control 
header", iae);
       }
    }
 
@@ -108,7 +108,7 @@ public final class B2BlobIntegrationLiveTest extends 
BaseBlobIntegrationTest {
          super.testCopyIfModifiedSince();
          failBecauseExceptionWasNotThrown(IllegalArgumentException.class);
       } catch (IllegalArgumentException iae) {
-         throw new SkipException("B2 requires repeatable payloads to calculate 
SHA1 hash", iae);
+         throw new SkipException("B2 does not support the Cache-Control 
header", iae);
       }
    }
 
@@ -118,7 +118,7 @@ public final class B2BlobIntegrationLiveTest extends 
BaseBlobIntegrationTest {
          super.testCopyIfUnmodifiedSince();
          failBecauseExceptionWasNotThrown(IllegalArgumentException.class);
       } catch (IllegalArgumentException iae) {
-         throw new SkipException("B2 requires repeatable payloads to calculate 
SHA1 hash", iae);
+         throw new SkipException("B2 does not support the Cache-Control 
header", iae);
       }
    }
 
@@ -128,7 +128,7 @@ public final class B2BlobIntegrationLiveTest extends 
BaseBlobIntegrationTest {
          super.testPutObjectStream();
          failBecauseExceptionWasNotThrown(IllegalArgumentException.class);
       } catch (IllegalArgumentException iae) {
-         throw new SkipException("B2 requires repeatable payloads to calculate 
SHA1 hash", iae);
+         throw new SkipException("B2 does not support the Cache-Control 
header", iae);
       }
    }
 

Reply via email to