From 0003d011f3a66a1961fc99a42bf54f3ad8041655 Mon Sep 17 00:00:00 2001 From: Andrew Gaul Date: Wed, 16 Nov 2016 10:54:46 -0800 Subject: [PATCH] Correct test exception message --- .../java/org/gaul/s3proxy/JcloudsS3BlobIntegrationLiveTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/gaul/s3proxy/JcloudsS3BlobIntegrationLiveTest.java b/src/test/java/org/gaul/s3proxy/JcloudsS3BlobIntegrationLiveTest.java index 4fb0fb0..ce777ef 100644 --- a/src/test/java/org/gaul/s3proxy/JcloudsS3BlobIntegrationLiveTest.java +++ b/src/test/java/org/gaul/s3proxy/JcloudsS3BlobIntegrationLiveTest.java @@ -102,7 +102,7 @@ public final class JcloudsS3BlobIntegrationLiveTest @Override public void testCreateBlobWithExpiry() throws InterruptedException { if (Quirks.NO_EXPIRES.contains(blobStoreType)) { - throw new SkipException("blob access control not supported"); + throw new SkipException("expiry not supported"); } super.testCreateBlobWithExpiry(); }