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

@ -170,9 +170,13 @@ public class JarFileTests {
@Test
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());
}
finally {
zip.close();
}
}
@Test

Loading…
Cancel
Save