Rename expectErrorMatch() to expectErrorMatches()
This commit is contained in:
parent
b338e6d7aa
commit
b447d7dbe6
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue