Merge pull request #602 from XiangRongLin/soundcloud_go

Ignore unreliable SoundcloudGoPlusTrack.testRelatedItems
This commit is contained in:
XiangRongLin 2021-04-07 19:41:44 +02:00 committed by GitHub
commit eafad3ad6b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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)"; }