Rename expectErrorMatch() to expectErrorMatches()

This commit is contained in:
Sebastien Deleuze 2016-11-04 17:15:03 +01:00
parent b338e6d7aa
commit b447d7dbe6
1 changed files with 1 additions and 1 deletions

View File

@ -212,7 +212,7 @@ public class ViewResolutionResultHandlerTests {
StepVerifier.create(mono)
.expectNextCount(0)
.expectErrorMatch(err -> err.getMessage().equals("Could not resolve view with name 'account'."))
.expectErrorMatches(err -> err.getMessage().equals("Could not resolve view with name 'account'."))
.verify();
}