From 41d598b03f669905ee868021c04154867dc51540 Mon Sep 17 00:00:00 2001 From: Andrew Gaul Date: Thu, 2 Jul 2015 22:28:42 -0700 Subject: [PATCH] JCLOUDS-894: Skip multipart tests on Atmos --- .../integration/AtmosIntegrationLiveTest.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/apis/atmos/src/test/java/org/jclouds/atmos/blobstore/integration/AtmosIntegrationLiveTest.java b/apis/atmos/src/test/java/org/jclouds/atmos/blobstore/integration/AtmosIntegrationLiveTest.java index 7e09d3eff8..1e5263c9b3 100644 --- a/apis/atmos/src/test/java/org/jclouds/atmos/blobstore/integration/AtmosIntegrationLiveTest.java +++ b/apis/atmos/src/test/java/org/jclouds/atmos/blobstore/integration/AtmosIntegrationLiveTest.java @@ -140,4 +140,14 @@ public class AtmosIntegrationLiveTest extends BaseBlobIntegrationTest { public void testMultipartUploadMultipleParts() throws Exception { throw new SkipException("Atmos does not support multipart uploads"); } + + @Override + public void testPutMultipartByteSource() throws Exception { + throw new SkipException("Atmos does not support multipart uploads"); + } + + @Override + public void testPutMultipartInputStream() throws Exception { + throw new SkipException("Atmos does not support multipart uploads"); + } }