diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-06-22 16:56:15 +0200 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-06-29 17:23:19 +0200 |
commit | 702293fda39d243d02fbc342682f9a20b640137e (patch) | |
tree | 3cc18fc1d52ca8b70763018918b6f27e10e2c95c /tests | |
parent | b9a26d0024cf19e19b644c81e4ba422d9b47e509 (diff) | |
download | sonarqube-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.java | 4 |
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()); } |