Browse Source

Test for SPR-5362

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@629 50f2f4bb-b051-0410-bef5-90022cba6387
pull/1/head
Arjen Poutsma 17 years ago
parent
commit
f7a6d46de1
  1. 3
      org.springframework.core/src/test/java/org/springframework/util/AntPathMatcherTests.java

3
org.springframework.core/src/test/java/org/springframework/util/AntPathMatcherTests.java

@ -343,6 +343,9 @@ public class AntPathMatcherTests { @@ -343,6 +343,9 @@ public class AntPathMatcherTests {
assertEquals(-1, comparator.compare("/hotels/{hotel}", "/hotels/*"));
assertEquals(1, comparator.compare("/hotels/*", "/hotels/{hotel}"));
assertEquals(-1, comparator.compare("/hotels/*","/hotels/*/**"));
assertEquals(1, comparator.compare("/hotels/*/**", "/hotels/*"));
}
@Test

Loading…
Cancel
Save