We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e8d009 commit 221e8ddCopy full SHA for 221e8dd
1 file changed
extractor/src/test/java/org/schabi/newpipe/extractor/services/youtube/YoutubeCommentsExtractorTest.java
@@ -56,7 +56,6 @@ private boolean getCommentsHelper(YoutubeCommentsExtractor extractor) throws IOE
56
}
57
58
return result;
59
-
60
61
62
@Test
@@ -69,7 +68,7 @@ public void testGetCommentsFromCommentsInfo() throws IOException, ExtractionExce
69
68
private boolean getCommentsFromCommentsInfoHelper(String url) throws IOException, ExtractionException {
70
boolean result = false;
71
CommentsInfo commentsInfo = CommentsInfo.getInfo(url);
72
- assertTrue("what the fuck am i doing with my life".equals(commentsInfo.getName()));
+ assertEquals("what the fuck am i doing with my life", commentsInfo.getName());
73
result = findInComments(commentsInfo.getRelatedItems(), "s1ck m3m3");
74
75
String nextPage = commentsInfo.getNextPageUrl();
0 commit comments