See gh-16068
This commit is contained in:
Andy Wilkinson 2019-04-02 14:40:18 +01:00
parent fe4c83a874
commit 6aa4fe579a
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ public abstract class AbstractBootArchiveTests<T extends Jar & BootArchive> {
this.task.execute();
try (JarFile jarFile = new JarFile(this.task.getArchivePath())) {
assertThat(
jarFile.getEntry(this.classesPath + "/com/example/Application.class"))
jarFile.getEntry(this.classesPath + "com/example/Application.class"))
.isNotNull();
assertThat(jarFile.getEntry("com/example/Application.class")).isNull();
assertThat(jarFile.getEntry("module-info.class")).isNotNull();