Avoid CI failures with UTF-8 chars in test filenames

See gh-26775
This commit is contained in:
Rossen Stoyanchev
2021-04-12 20:14:48 +01:00
parent a08593b44b
commit 0a6a6d48e2
4 changed files with 2 additions and 2 deletions

View File

@@ -88,7 +88,7 @@ public class ResourceHttpRequestHandlerIntegrationTests {
@ParameterizedTest
@MethodSource("argumentSource")
void classpathLocationWithEncodedPath(boolean usePathPatterns, String pathPrefix) throws Exception {
MockHttpServletRequest request = initRequest(pathPrefix + "/test/фоо.css");
MockHttpServletRequest request = initRequest(pathPrefix + "/test/foo with spaces.css");
MockHttpServletResponse response = new MockHttpServletResponse();
DispatcherServlet servlet = initDispatcherServlet(usePathPatterns, WebConfig.class);