This commit is contained in:
Andy Wilkinson 2019-07-04 19:36:32 +01:00
parent 2816635418
commit bd22ca0268
1 changed files with 2 additions and 2 deletions

View File

@ -153,8 +153,8 @@ class ExplodedArchiveTests {
@Test
void getNonRecursiveManifestEvenIfNonRecursive() throws Exception {
try (ExplodedArchive explodedArchive = new ExplodedArchive(new File("src/test/resources/root"), false)) {
assertThat(this.archive.getManifest()).isNotNull();
Map<String, Archive.Entry> entries = getEntriesMap(this.archive);
assertThat(explodedArchive.getManifest()).isNotNull();
Map<String, Archive.Entry> entries = getEntriesMap(explodedArchive);
assertThat(entries.size()).isEqualTo(3);
}
}