Disabled ``testRelatedItems`` as it's unreliable

This commit is contained in:
litetex 2021-12-11 15:23:11 +01:00
parent 1e0c409bec
commit 7489502cc8
1 changed files with 7 additions and 1 deletions

View File

@ -71,9 +71,15 @@ public class SoundcloudStreamExtractorTest {
@Override public boolean expectedHasSubtitles() { return false; }
@Override public boolean expectedHasFrames() { return false; }
@Override public int expectedStreamSegmentsCount() { return 0; }
@Override public boolean expectedHasRelatedItems() { return true; } // One stream is returned
@Override public String expectedLicence() { return "all-rights-reserved"; }
@Override public String expectedCategory() { return "Pop"; }
@Test
@Override
@Ignore("Unreliable, sometimes it has related items, sometimes it does not")
public void testRelatedItems() throws Exception {
super.testRelatedItems();
}
}
public static class SoundcloudGoPlusTrack extends DefaultStreamExtractorTest {