Browse Source

SONAR-20758 fix FP log pollution

tags/9.9.3.79811
Steve Marion 7 months ago
parent
commit
720d4d2700

+ 1
- 1
server/sonar-webserver-auth/src/test/java/org/sonar/server/usertoken/notification/TokenExpirationNotificationSenderTest.java View File

@@ -53,7 +53,7 @@ public class TokenExpirationNotificationSenderTest {
underTest.sendNotifications();
assertThat(logTester.getLogs(LoggerLevel.DEBUG))
.extracting(LogAndArguments::getFormattedMsg)
.containsExactly("Emails for token expiration notification have not been sent because email settings are not configured.");
.contains("Emails for token expiration notification have not been sent because email settings are not configured.");
}

@Test

Loading…
Cancel
Save