Unignore PublicBroadcasterTest

Tests only work on linux, mocks have to be generated on linux too
This commit is contained in:
XiangRongLin 2021-02-17 20:26:23 +01:00
parent 37366c65ca
commit b99cb8624f
3 changed files with 14 additions and 27 deletions

View File

@ -16,7 +16,6 @@ import org.schabi.newpipe.extractor.stream.StreamExtractor;
import org.schabi.newpipe.extractor.stream.StreamSegment;
import org.schabi.newpipe.extractor.stream.StreamType;
import javax.annotation.Nullable;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
@ -24,6 +23,8 @@ import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import javax.annotation.Nullable;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.schabi.newpipe.extractor.ServiceList.YouTube;
@ -333,20 +334,6 @@ public class YoutubeStreamExtractorDefaultTest {
));
}
// @formatter:on
@Override
@Ignore("TODO fix")
@Test
public void testUploaderName() throws Exception {
super.testUploaderName();
}
@Override
@Ignore("TODO fix")
@Test
public void testMetaInfo() throws Exception {
super.testMetaInfo();
}
}
}