> @@ -187,6 +187,8 @@ public void testListContainerMarker() throws
> InterruptedException {
> container);
> assert container.getNextMarker() == null;
>
> + container = view.getBlobStore().list(containerName,
> afterMarker("z"));
> + assert container.getNextMarker() == null;
Could you write this as `assertThat(container.getNextMarker()).isNotNull()` for
a more informative error message?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/822/files#r35139182