>
> assertEquals(api.getContainerApi(regionId).get(containerName).getObjectCount(),
> 0);
> }
> }
>
> + public void testDeleteSinglePartObjectWithMultiPartDelete() throws
> Exception {
> + String objectName = "testDeleteSinglePartObjectWithMultiPartDelete";
> + for (String regionId : regions) {
> + api.getObjectApi(regionId, containerName).put(objectName,
> newByteSourcePayload(ByteSource.wrap("swifty".getBytes())));
> + DeleteStaticLargeObjectResponse resp =
> api.getStaticLargeObjectApi(regionId, containerName).delete(objectName);
> + assertThat(resp.status()).isEqualTo("400 Bad Request");
Augmented mock tests in the updated commit.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/905/files#r50757922