Include trailing slash in prefix test

This commit is contained in:
Andrew Gaul 2017-10-30 18:31:06 -07:00
parent af05e24ae9
commit 9a0b51a4d4
1 changed files with 1 additions and 1 deletions

View File

@ -310,7 +310,7 @@ public class BaseContainerIntegrationTest extends BaseBlobStoreIntegrationTest {
add15UnderRoot(containerName);
awaitConsistency();
PageSet<? extends StorageMetadata> container = view.getBlobStore().list(
containerName, new ListContainerOptions().prefix(prefix).delimiter("/"));
containerName, new ListContainerOptions().prefix(prefix + "/").delimiter("/"));
assert container.getNextMarker() == null;
assertEquals(container.size(), 10);
} finally {