Skip to content

Commit 6aa4fe5

Browse files
committed
Polish
See gh-16068
1 parent fe4c83a commit 6aa4fe5

File tree

1 file changed

+1
-1
lines changed
  • spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/test/java/org/springframework/boot/gradle/tasks/bundling

1 file changed

+1
-1
lines changed

spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/test/java/org/springframework/boot/gradle/tasks/bundling/AbstractBootArchiveTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ public void moduleInfoClassIsPackagedInTheRootOfTheArchive() throws IOException
159159
this.task.execute();
160160
try (JarFile jarFile = new JarFile(this.task.getArchivePath())) {
161161
assertThat(
162-
jarFile.getEntry(this.classesPath + "/com/example/Application.class"))
162+
jarFile.getEntry(this.classesPath + "com/example/Application.class"))
163163
.isNotNull();
164164
assertThat(jarFile.getEntry("com/example/Application.class")).isNull();
165165
assertThat(jarFile.getEntry("module-info.class")).isNotNull();

0 commit comments

Comments
 (0)