Merge pull request #991 from FireMasterK/fix-compile

Fix complication error in comment test
This commit is contained in:
Tobi 2022-11-29 19:20:01 +01:00 committed by GitHub
commit a1128ecbdc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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());
}
}
}