aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2017-06-22 16:56:15 +0200
committerJulien Lancelot <julien.lancelot@sonarsource.com>2017-06-29 17:23:19 +0200
commit702293fda39d243d02fbc342682f9a20b640137e (patch)
tree3cc18fc1d52ca8b70763018918b6f27e10e2c95c /tests
parentb9a26d0024cf19e19b644c81e4ba422d9b47e509 (diff)
downloadsonarqube-702293fda39d243d02fbc342682f9a20b640137e.tar.gz
sonarqube-702293fda39d243d02fbc342682f9a20b640137e.zip
SONAR-9442 Update notification email by adding comma before urls
Diffstat (limited to 'tests')
-rw-r--r--tests/src/test/java/org/sonarqube/tests/qualityProfile/BuiltInQualityProfilesNotificationTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/test/java/org/sonarqube/tests/qualityProfile/BuiltInQualityProfilesNotificationTest.java b/tests/src/test/java/org/sonarqube/tests/qualityProfile/BuiltInQualityProfilesNotificationTest.java
index c2f2e343564..54077419d60 100644
--- a/tests/src/test/java/org/sonarqube/tests/qualityProfile/BuiltInQualityProfilesNotificationTest.java
+++ b/tests/src/test/java/org/sonarqube/tests/qualityProfile/BuiltInQualityProfilesNotificationTest.java
@@ -139,11 +139,11 @@ public class BuiltInQualityProfilesNotificationTest {
assertThat(messages.get(0).getMimeMessage().getContent().toString())
.containsSequence(
"Built-in quality profiles have been updated:",
- "\"Basic\" - Foo " + url + "/profiles/changelog?language=foo&name=Basic&since=", "&to=",
+ "\"Basic\" - Foo: " + url + "/profiles/changelog?language=foo&name=Basic&since=", "&to=",
" 1 new rules",
" 3 rules have been updated",
" 1 rules removed",
- "This is a good time to review your quality profiles and update them to benefit from the latest evolutions. " + url + "/profiles")
+ "This is a good time to review your quality profiles and update them to benefit from the latest evolutions: " + url + "/profiles")
.isEqualTo(messages.get(1).getMimeMessage().getContent().toString());
}