Skip to content

Commit

Permalink
Merge pull request #991 from FireMasterK/fix-compile
Browse files Browse the repository at this point in the history
Fix complication error in comment test
  • Loading branch information
TobiGr authored Nov 29, 2022
2 parents abf08e1 + 2e08eaa commit a1128ec
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -369,8 +369,8 @@ public void testGetCommentsFormatting() throws IOException, ExtractionException

final CommentsInfoItem firstComment = comments.getItems().get(0);

assertContains("<s>", firstComment.getCommentText());
assertContains("<b>", firstComment.getCommentText());
assertContains("<s>", firstComment.getCommentText().getContent());
assertContains("<b>", firstComment.getCommentText().getContent());
}
}
}

0 comments on commit a1128ec

Please sign in to comment.