Fix complication error in comment test.

This commit is contained in:
Kavin 2022-11-29 16:07:48 +00:00
parent abf08e1496
commit 2e08eaad96
No known key found for this signature in database
GPG Key ID: 49451E4482CC5BCD
1 changed files with 2 additions and 2 deletions

View File

@ -369,8 +369,8 @@ public class YoutubeCommentsExtractorTest {
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());
}
}
}