1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-06-25 22:53:20 +00:00

fix broken unit test

This commit is contained in:
Christian Schabesberger 2016-02-18 11:47:21 +01:00
parent 3d168542fe
commit 3e9edba189

View File

@ -104,6 +104,6 @@ public class YoutubeStreamExtractorDefaultTest extends AndroidTestCase {
public void testGetDashMpd() throws ParsingException {
assertTrue(extractor.getDashMpdUrl(),
!extractor.getDashMpdUrl().isEmpty());
extractor.getDashMpdUrl() != null || !extractor.getDashMpdUrl().isEmpty());
}
}