[YouTube] Parse watching count in live streams items

This commit is contained in:
Mauricio Colli
2019-04-28 17:03:17 -03:00
parent 3638f0e0ea
commit d8280ce0da
3 changed files with 86 additions and 15 deletions

View File

@@ -68,7 +68,7 @@ public class YoutubeStreamExtractorLivestreamTest {
@Test
public void testGetViewCount() throws ParsingException {
long count = extractor.getViewCount();
assertTrue(Long.toString(count), count >= 7148995);
assertTrue(Long.toString(count), count > -1);
}
@Test