Fix Windows path issue in JarFileWrapperTests

See gh-22991
This commit is contained in:
Phillip Webb 2020-08-19 10:33:23 -07:00
parent 3fe2005e06
commit 17e2d72bcb

View File

@ -137,7 +137,7 @@ class JarFileWrapperTests {
@Test
void toStringDelegatesToParent() {
assertThat(this.wrapper.toString()).endsWith("/temp.jar");
assertThat(this.wrapper.toString()).endsWith("temp.jar");
}
@Test // gh-22991