Merge pull request #10776 from alimate/BAEL-4984

BAEL-4984: Fixed the wrong assertion issue in a test
This commit is contained in:
Eric Martin 2021-05-17 19:40:11 -05:00 committed by GitHub
commit 7058aabfac
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ public class WebClientLoggingIntegrationTest {
.exchange()
.block();
verify(mockAppender).doAppend(argThat(argument -> (((LoggingEvent) argument).getFormattedMessage()).contains("domain=.typicode.com;")));
verify(mockAppender).doAppend(argThat(argument -> (((LoggingEvent) argument).getFormattedMessage()).contains(sampleUrl)));
}