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 c99cc53 commit 9e8e7aaCopy full SHA for 9e8e7aa
spring-webmvc/src/test/java/org/springframework/web/servlet/resource/ResourceHttpRequestHandlerTests.java
@@ -258,14 +258,6 @@ public void directory() throws Exception {
258
assertEquals(404, this.response.getStatus());
259
}
260
261
- @Test
262
- public void directoryInJarFile() throws Exception {
263
- this.request.setAttribute(HandlerMapping.PATH_WITHIN_HANDLER_MAPPING_ATTRIBUTE, "underscorejs/");
264
- this.handler.handleRequest(this.request, this.response);
265
- assertEquals(200, this.response.getStatus());
266
- assertEquals(0, this.response.getContentLength());
267
- }
268
-
269
@Test
270
public void missingResourcePath() throws Exception {
271
this.request.setAttribute(HandlerMapping.PATH_WITHIN_HANDLER_MAPPING_ATTRIBUTE, "");
0 commit comments