Remove redundant hash from path of unpacked nested library

Closes gh-4124
This commit is contained in:
Andy Wilkinson
2015-10-14 16:32:58 +01:00
parent d55c001a2e
commit 7e718cda26
2 changed files with 2 additions and 3 deletions

View File

@@ -97,7 +97,7 @@ public class JarFileArchiveTests {
Entry entry = getEntriesMap(this.archive).get("nested.jar");
Archive nested = this.archive.getNestedArchive(entry);
assertThat(nested.getUrl().toString(), startsWith("file:"));
assertThat(nested.getUrl().toString(), endsWith(".jar"));
assertThat(nested.getUrl().toString(), endsWith("/nested.jar"));
}
@Test