Replace isEqualTo(null) with isNull()

This commit is contained in:
Johnny Lim
2018-08-07 01:26:57 +09:00
committed by Josh Cummings
parent 4de3d0b860
commit 68878a1675
10 changed files with 12 additions and 12 deletions

View File

@@ -108,7 +108,7 @@ public class FilterChainProxyConfigTests {
public void pathWithNoMatchHasNoFilters() throws Exception {
FilterChainProxy filterChainProxy = appCtx.getBean(
"newFilterChainProxyNoDefaultPath", FilterChainProxy.class);
assertThat(filterChainProxy.getFilters("/nomatch")).isEqualTo(null);
assertThat(filterChainProxy.getFilters("/nomatch")).isNull();
}
// SEC-1235