You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: extractor/src/test/java/org/schabi/newpipe/extractor/services/youtube/search/YoutubeSearchExtractorChannelOnlyTest.java
+9-2Lines changed: 9 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ public void testGetSecondPage() throws Exception {
39
39
booleanequals = true;
40
40
for (inti = 0; i < secondPage.getItems().size()
41
41
&& i < itemsPage.getItems().size(); i++) {
42
-
if(!secondPage.getItems().get(i).getUrl().equals(
42
+
if(!secondPage.getItems().get(i).getUrl().equals(
43
43
itemsPage.getItems().get(i).getUrl())) {
44
44
equals = false;
45
45
}
@@ -58,7 +58,7 @@ public void testGetSecondPageUrl() throws Exception {
58
58
@Test
59
59
publicvoidtestOnlyContainChannels() {
60
60
for(InfoItemitem : itemsPage.getItems()) {
61
-
if(!(iteminstanceofChannelInfoItem)) {
61
+
if(!(iteminstanceofChannelInfoItem)) {
62
62
fail("The following item is no channel item: " + item.toString());
0 commit comments