diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-02-26 09:50:59 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-02-26 09:50:59 +0100 |
commit | 26c5dfb16763787a4ffe2219def80ebb3b20bdfd (patch) | |
tree | 548b4c3fbf43188d19cf9334392ec75f9b8239f6 | |
parent | 67fa5e7bb389a76d0109f1f8d8d51aa3388cf5ce (diff) | |
download | sonarqube-5.5-M5.tar.gz sonarqube-5.5-M5.zip |
SONAR-7010 Fix IssueActionTest5.5-M5
-rw-r--r-- | it/it-tests/src/test/java/it/issue/IssueActionTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/it/it-tests/src/test/java/it/issue/IssueActionTest.java b/it/it-tests/src/test/java/it/issue/IssueActionTest.java index ee8b3fbd15a..49322a7d1e9 100644 --- a/it/it-tests/src/test/java/it/issue/IssueActionTest.java +++ b/it/it-tests/src/test/java/it/issue/IssueActionTest.java @@ -70,7 +70,7 @@ public class IssueActionTest extends AbstractIssueTest { public void add_comment() throws Exception { IssueComment comment = adminIssueClient().addComment(issue.key(), "this is my *comment*"); assertThat(comment.key()).isNotNull(); - assertThat(comment.htmlText()).isEqualTo("this is my <em>comment</em>"); + assertThat(comment.htmlText()).isEqualTo("this is my <strong>comment</strong>"); assertThat(comment.login()).isEqualTo("admin"); assertThat(comment.createdAt()).isNotNull(); @@ -79,7 +79,7 @@ public class IssueActionTest extends AbstractIssueTest { assertThat(reloaded.comments()).hasSize(1); assertThat(reloaded.comments().get(0).key()).isEqualTo(comment.key()); - assertThat(reloaded.comments().get(0).htmlText()).isEqualTo("this is my <em>comment</em>"); + assertThat(reloaded.comments().get(0).htmlText()).isEqualTo("this is my <strong>comment</strong>"); assertThat(reloaded.updateDate().before(issue.creationDate())).isFalse(); } |