Skip to content

Commit 34604a9

Browse files
author
Dave Syer
committed
Add assertion about non-special resource
1 parent 8065200 commit 34604a9

File tree

1 file changed

+1
-0
lines changed
  • spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/jar

1 file changed

+1
-0
lines changed

spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/jar/JarFileTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ public void jdkJarFile() throws Exception {
9090
URL jarUrl = new URL("jar:" + this.rootJarFile.toURI() + "!/");
9191
URLClassLoader urlClassLoader = new URLClassLoader(new URL[] { jarUrl });
9292
assertThat(urlClassLoader.getResource("special/\u00EB.dat"), notNullValue());
93+
assertThat(urlClassLoader.getResource("d/9.dat"), notNullValue());
9394
}
9495

9596
@Test

0 commit comments

Comments
 (0)