> @@ -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));
Added suggested test to `deleteContainerIfEmpty` where it belongs.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/451/files#r15261086