pull/12120/merge
Andy Wilkinson 7 years ago
parent 746cc0f70b
commit 915eaf3447

@ -170,9 +170,13 @@ public class JarFileTests {
@Test @Test
public void getSize() throws Exception { public void getSize() throws Exception {
try (ZipFile zip = new ZipFile(this.rootJarFile)) { ZipFile zip = new ZipFile(this.rootJarFile);
try {
assertThat(this.jarFile.size()).isEqualTo(zip.size()); assertThat(this.jarFile.size()).isEqualTo(zip.size());
} }
finally {
zip.close();
}
} }
@Test @Test

Loading…
Cancel
Save