Ignore unreliable SoundcloudGoPlusTrack.testRelatedItems

This commit is contained in:
XiangRongLin 2021-04-06 18:26:06 +02:00
parent 90afd6162a
commit aee3838ed5
1 changed files with 10 additions and 0 deletions

View File

@ -1,6 +1,7 @@
package org.schabi.newpipe.extractor.services.soundcloud;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;
import org.schabi.newpipe.downloader.DownloaderTestImpl;
import org.schabi.newpipe.extractor.MediaFormat;
@ -93,6 +94,15 @@ public class SoundcloudStreamExtractorTest {
}
}
@Override
@Test
@Ignore("Unreliable, sometimes it has related items, sometimes it does not. See " +
"https://github.com/TeamNewPipe/NewPipeExtractor/runs/2280013723#step:5:263 " +
"https://github.com/TeamNewPipe/NewPipeExtractor/pull/601")
public void testRelatedItems() throws Exception {
super.testRelatedItems();
}
@Override public StreamExtractor extractor() { return extractor; }
@Override public StreamingService expectedService() { return SoundCloud; }
@Override public String expectedName() { return "Places (feat. Ina Wroldsen)"; }