We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8065200 commit 34604a9Copy full SHA for 34604a9
spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/jar/JarFileTests.java
@@ -90,6 +90,7 @@ public void jdkJarFile() throws Exception {
90
URL jarUrl = new URL("jar:" + this.rootJarFile.toURI() + "!/");
91
URLClassLoader urlClassLoader = new URLClassLoader(new URL[] { jarUrl });
92
assertThat(urlClassLoader.getResource("special/\u00EB.dat"), notNullValue());
93
+ assertThat(urlClassLoader.getResource("d/9.dat"), notNullValue());
94
}
95
96
@Test
0 commit comments