Skip to content

Commit d746d1b

Browse files
committed
Disable irrelevant test
1 parent 271a465 commit d746d1b

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

extractor/src/test/java/org/schabi/newpipe/extractor/services/youtube/search/YoutubeSearchExtractorTest.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import static java.util.Collections.singletonList;
1414

1515
import org.junit.jupiter.api.BeforeAll;
16+
import org.junit.jupiter.api.Disabled;
1617
import org.junit.jupiter.api.Test;
1718
import org.schabi.newpipe.downloader.DownloaderFactory;
1819
import org.schabi.newpipe.extractor.InfoItem;
@@ -380,6 +381,12 @@ void testVideoDescription() throws IOException, ExtractionException {
380381
final List<InfoItem> items = extractor.getInitialPage().getItems();
381382
assertNotNull(((StreamInfoItem) items.get(0)).getShortDescription());
382383
}
384+
385+
@Disabled("Irrelevant - sometimes suggestions show up, sometimes not")
386+
@Override
387+
public void testSearchSuggestion() throws Exception {
388+
super.testSearchSuggestion();
389+
}
383390
}
384391

385392
public static class ShortFormContent extends DefaultSearchExtractorTest {

0 commit comments

Comments
 (0)