aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>2017-09-14 13:58:06 +0200
committerEric Hartmann <hartmann.eric@gmail.Com>2017-10-02 13:03:35 +0200
commite88cd1de17f77286d5f352b54791673911348a7d (patch)
tree75179d1b468df866d8ae67fbfd56817f194ce0c7 /tests
parent0498004eeacb1853ea2ab7f5d8f1657fd1ec3c58 (diff)
downloadsonarqube-e88cd1de17f77286d5f352b54791673911348a7d.tar.gz
sonarqube-e88cd1de17f77286d5f352b54791673911348a7d.zip
SONAR-9771 remove "SonarQube" from wording of links in notifications
Diffstat (limited to 'tests')
-rw-r--r--tests/src/test/java/org/sonarqube/tests/issue/IssueNotificationsTest.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/src/test/java/org/sonarqube/tests/issue/IssueNotificationsTest.java b/tests/src/test/java/org/sonarqube/tests/issue/IssueNotificationsTest.java
index a8c63074e1d..7fb89f7cdaf 100644
--- a/tests/src/test/java/org/sonarqube/tests/issue/IssueNotificationsTest.java
+++ b/tests/src/test/java/org/sonarqube/tests/issue/IssueNotificationsTest.java
@@ -156,7 +156,7 @@ public class IssueNotificationsTest extends AbstractIssueTest {
assertThat((String) message.getContent()).contains("Type");
assertThat((String) message.getContent()).contains("One Issue Per Line (xoo): 17");
assertThat((String) message.getContent()).contains(
- "See it in SonarQube: http://localhost:9000/project/issues?id=sample&createdAt=2015-12-15T00%3A00%3A00%2B");
+ "More details at: http://localhost:9000/project/issues?id=sample&createdAt=2015-12-15T00%3A00%3A00%2B");
assertThat(emails.hasNext()).isTrue();
message = emails.next().getMimeMessage();
@@ -164,7 +164,7 @@ public class IssueNotificationsTest extends AbstractIssueTest {
assertThat((String) message.getContent()).contains("sample/Sample.xoo");
assertThat((String) message.getContent()).contains("Assignee changed to Tester");
assertThat((String) message.getContent()).contains(
- "See it in SonarQube: http://localhost:9000/project/issues?id=sample&issues=" + issue.key() + "&open=" + issue.key());
+ "More details at: http://localhost:9000/project/issues?id=sample&issues=" + issue.key() + "&open=" + issue.key());
assertThat(emails.hasNext()).isFalse();
}
@@ -226,7 +226,7 @@ public class IssueNotificationsTest extends AbstractIssueTest {
assertThat((String) message.getContent()).contains("sample/Sample.xoo");
assertThat((String) message.getContent()).contains("Severity: BLOCKER (was MINOR)");
assertThat((String) message.getContent()).contains(
- "See it in SonarQube: http://localhost:9000/project/issues?id=sample&issues=" + issue.key() + "&open=" + issue.key());
+ "More details at: http://localhost:9000/project/issues?id=sample&issues=" + issue.key() + "&open=" + issue.key());
assertThat(emails.hasNext()).isFalse();
}