tenyearscoder
commited on
Commit
·
52c2ada
1
Parent(s):
6860f14
travisCI mod - too long url
Browse files
tests/contrib/test_playlist.py
CHANGED
@@ -2,7 +2,8 @@ from pytube import Playlist
|
|
2 |
|
3 |
|
4 |
def test_title():
|
5 |
-
|
|
|
6 |
pl = Playlist(url)
|
7 |
pl_title = pl.title()
|
8 |
assert pl_title == "Python Tutorial for Beginners"
|
|
|
2 |
|
3 |
|
4 |
def test_title():
|
5 |
+
list_key = "PLsyeobzWxl7poL9JTVyndKe62ieoN-MZ3"
|
6 |
+
url = "https://www.youtube.com/playlist?list=" + list_key
|
7 |
pl = Playlist(url)
|
8 |
pl_title = pl.title()
|
9 |
assert pl_title == "Python Tutorial for Beginners"
|