> @@ -272,10 +274,10 @@ public void deleteContainerWithContents() throws 
> InterruptedException {
>        String containerName = getContainerName();
>        try {
>           addBlobToContainer(containerName, "test");
> -         view.getBlobStore().deleteContainer(containerName);
> -         assertNotExists(containerName);
> +         
> assertFalse(view.getBlobStore().deleteContainerIfEmpty(containerName));
> +         assertTrue(view.getBlobStore().containerExists(containerName));

I investigated other providers and it turns out that Azure *supports* a 
compound delete container and all blobs operation.  Thus we should retain 
`deleteContainer` and add new tests instead of modifying the existing ones.

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/451/files#r15376971

Reply via email to