> @@ -601,9 +603,16 @@ public void testPutInputStream() throws Exception {
>
> @Test(groups = { "integration", "live" })
> public void testPutMultipartByteSource() throws Exception {
> - long length = getMinimumMultipartBlobSize();
> + long length = 33554432 + 1; //
> MultipartUploadSlicingAlgorithm.DEFAULT_PART_SIZE + 1
> + BlobStore blobStore = view.getBlobStore();
> + MultipartUploadSlicingAlgorithm algorithm = new
> MultipartUploadSlicingAlgorithm(
> + getMinimumMultipartBlobSize(),
> blobStore.getMaximumMultipartPartSize(),
Call `blobStore.getMinimumMultipartBlobSize` instead? We should remove the
test-specific variants now the `BlobStore` supports this.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/766/files#r32079892