Repository: jclouds-labs Updated Branches: refs/heads/2.0.x 6567192d4 -> 1433804a8
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/1433804a Tree: http://git-wip-us.apache.org/repos/asf/jclouds-labs/tree/1433804a Diff: http://git-wip-us.apache.org/repos/asf/jclouds-labs/diff/1433804a Branch: refs/heads/2.0.x Commit: 1433804a8ce17efb63f24ab4f7275ae750b5731b Parents: 6567192 Author: Andrew Gaul <[email protected]> Authored: Fri Apr 7 19:48:54 2017 -0700 Committer: Andrew Gaul <[email protected]> Committed: Fri Apr 7 19:54:04 2017 -0700 ---------------------------------------------------------------------- .../integration/B2BlobIntegrationLiveTest.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jclouds-labs/blob/1433804a/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); } }
