Browse Source

Remove duplicate assertion in matchWithNullPath()

See gh-23382
pull/23393/head
Johnny Lim 7 years ago committed by Stephane Nicoll
parent
commit
bccc7a62f4
  1. 1
      spring-core/src/test/java/org/springframework/util/AntPathMatcherTests.java

1
spring-core/src/test/java/org/springframework/util/AntPathMatcherTests.java

@ -136,7 +136,6 @@ public class AntPathMatcherTests { @@ -136,7 +136,6 @@ public class AntPathMatcherTests {
public void matchWithNullPath() {
assertThat(pathMatcher.match("/test", null)).isFalse();
assertThat(pathMatcher.match("/", null)).isFalse();
assertThat(pathMatcher.match("/", null)).isFalse();
assertThat(pathMatcher.match(null, null)).isFalse();
}

Loading…
Cancel
Save