> @@ -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));

Maybe add a test for deleteContainerIfEmpty again to make sure that a 
ContainerNotFoundException results in a return true.

assertTrue(view.getBlobStore().deleteContainerIfEmpty(containerName));

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

Reply via email to