Fixed the wrong assertion issue in a test

This commit is contained in:
Ali Dehghani 2021-05-18 01:57:48 +04:30
parent d1e8164581
commit 10346cd9d7
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)));
}