1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-10-21 18:37:39 +00:00

Merge pull request #465 from mauriciocolli/fix-travis

Fix travis and YoutubeStreamUrlIdHandler
This commit is contained in:
Christian Schabesberger
2017-02-27 19:03:28 +01:00
committed by GitHub
2 changed files with 5 additions and 6 deletions

View File

@@ -111,9 +111,9 @@ public class YoutubeStreamUrlIdHandlerTest {
assertTrue(urlIdHandler.acceptUrl("vnd.youtube:jZViOEv90dI"));
String sharedId = "7JIArTByb3E";
String sharedId = "8A940MXKFmQ";
assertTrue(urlIdHandler.acceptUrl("vnd.youtube://www.youtube.com/shared?ci=" + sharedId + "&feature=twitter-deep-link"));
assertTrue(urlIdHandler.acceptUrl("vnd.youtube://www.youtube.com/shared?ci=" + sharedId ));
assertTrue(urlIdHandler.acceptUrl("https://www.youtube.com/shared?ci=7JIArTByb3E"));
assertTrue(urlIdHandler.acceptUrl("https://www.youtube.com/shared?ci=" + sharedId));
}
}