From 14847cc6624175f6f973b6813132c9e94b5e91cc Mon Sep 17 00:00:00 2001 From: Arjen Poutsma Date: Mon, 16 Feb 2009 13:42:05 +0000 Subject: [PATCH] Uncommented test case git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@645 50f2f4bb-b051-0410-bef5-90022cba6387 --- .../annotation/UriTemplateServletAnnotationControllerTests.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/org.springframework.web.servlet/src/test/java/org/springframework/web/servlet/mvc/annotation/UriTemplateServletAnnotationControllerTests.java b/org.springframework.web.servlet/src/test/java/org/springframework/web/servlet/mvc/annotation/UriTemplateServletAnnotationControllerTests.java index eb5a32f3192..8bf9f7b456b 100644 --- a/org.springframework.web.servlet/src/test/java/org/springframework/web/servlet/mvc/annotation/UriTemplateServletAnnotationControllerTests.java +++ b/org.springframework.web.servlet/src/test/java/org/springframework/web/servlet/mvc/annotation/UriTemplateServletAnnotationControllerTests.java @@ -167,13 +167,11 @@ public class UriTemplateServletAnnotationControllerTests { writer.write("specific"); } -/* @RequestMapping("/hotels/{hotel}") public void handleVars(@PathVariable("hotel") String hotel, Writer writer) throws IOException { assertEquals("Invalid path variable value", "42", hotel); writer.write("variables"); } -*/ @RequestMapping("/hotels/*") public void handleWildCard(Writer writer) throws IOException {