mirror of
https://github.com/TeamNewPipe/NewPipeExtractor.git
synced 2025-01-06 01:20:32 +05:30
Fixed typos in tests
This commit is contained in:
parent
f09b4e68d0
commit
320c0d8c99
@ -105,6 +105,6 @@ public class SoundcloudStreamExtractorDefaultTest {
|
|||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testGetSubtitles() throws IOException, ExtractionException, JsonParserException {
|
public void testGetSubtitles() throws IOException, ExtractionException, JsonParserException {
|
||||||
assertTrue(extractor.getSubtitles() != null);
|
assertTrue(extractor.getSubtitles() == null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -154,6 +154,6 @@ public class YoutubeStreamExtractorDefaultTest {
|
|||||||
@Test
|
@Test
|
||||||
public void testGetSubtitlesList() throws IOException, ExtractionException, JsonParserException {
|
public void testGetSubtitlesList() throws IOException, ExtractionException, JsonParserException {
|
||||||
// Video (/view?v=YQHsXMglC9A) set in the setUp() method has no captions => null
|
// Video (/view?v=YQHsXMglC9A) set in the setUp() method has no captions => null
|
||||||
assertTrue(extractor.getSubtitles() != null);
|
assertTrue(extractor.getSubtitles() == null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -106,7 +106,7 @@ public class YoutubeStreamExtractorRestrictedTest {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testGetSubtitlesList() throws IOException, ExtractionException, JsonParserException {
|
public void testGetSubtitles() throws IOException, ExtractionException, JsonParserException {
|
||||||
assertTrue(extractor.getSubtitles() != null);
|
assertTrue(extractor.getSubtitles() == null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user