Repository: jclouds-labs-google Updated Branches: refs/heads/master a02467ac3 -> 23eac1fdd
Expose new multipart tests Project: http://git-wip-us.apache.org/repos/asf/jclouds-labs-google/repo Commit: http://git-wip-us.apache.org/repos/asf/jclouds-labs-google/commit/23eac1fd Tree: http://git-wip-us.apache.org/repos/asf/jclouds-labs-google/tree/23eac1fd Diff: http://git-wip-us.apache.org/repos/asf/jclouds-labs-google/diff/23eac1fd Branch: refs/heads/master Commit: 23eac1fdd29a85360e95623df34be81c9ba6a6b0 Parents: a02467a Author: Andrew Gaul <[email protected]> Authored: Thu Jan 15 12:44:34 2015 -0800 Committer: Andrew Gaul <[email protected]> Committed: Fri Jan 16 05:38:21 2015 -0800 ---------------------------------------------------------------------- .../integration/GoogleCloudStorageBlobIntegrationLiveTest.java | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jclouds-labs-google/blob/23eac1fd/google-cloud-storage/src/test/java/org/jclouds/googlecloudstorage/blobstore/integration/GoogleCloudStorageBlobIntegrationLiveTest.java ---------------------------------------------------------------------- diff --git a/google-cloud-storage/src/test/java/org/jclouds/googlecloudstorage/blobstore/integration/GoogleCloudStorageBlobIntegrationLiveTest.java b/google-cloud-storage/src/test/java/org/jclouds/googlecloudstorage/blobstore/integration/GoogleCloudStorageBlobIntegrationLiveTest.java index fd39273..92eeb04 100644 --- a/google-cloud-storage/src/test/java/org/jclouds/googlecloudstorage/blobstore/integration/GoogleCloudStorageBlobIntegrationLiveTest.java +++ b/google-cloud-storage/src/test/java/org/jclouds/googlecloudstorage/blobstore/integration/GoogleCloudStorageBlobIntegrationLiveTest.java @@ -59,6 +59,11 @@ public class GoogleCloudStorageBlobIntegrationLiveTest extends BaseBlobIntegrati private long PART_SIZE = MultipartUpload.MIN_PART_SIZE; + @Override + protected long getMinimumMultipartBlobSize() { + return PART_SIZE + 1; + } + public GoogleCloudStorageBlobIntegrationLiveTest() throws IOException { provider = "google-cloud-storage"; }
