> @@ -432,7 +433,13 @@ public void deleteObject(String name) throws
> InterruptedException {
> String container = getContainerName();
> try {
> addBlobToContainer(container, name, name, MediaType.TEXT_PLAIN);
> + if (view.getConsistencyModel() == ConsistencyModel.EVENTUAL) {
It would be great to replace these kinds of comparisons with
`Assert.isEqualTo(Object expected)` available to us in assertj. Just an idea,
WDYT?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/683/files#r24683078