Fixes a small test bug on windows

This commit is contained in:
Zack Shoylev 2015-07-08 20:11:53 -05:00
parent 86af0753bf
commit 6945b04243
1 changed files with 1 additions and 1 deletions

View File

@ -539,7 +539,7 @@ public class FilesystemBlobStoreTest {
.inDirectory("");
PageSet<? extends StorageMetadata> res = blobStore.list(CONTAINER_NAME, options);
assertTrue(res.size() == 1);
assertEquals(res.iterator().next().getName(), d + '/');
assertEquals(res.iterator().next().getName(), d + File.separator);
}