tenyearscoder commited on
Commit
52c2ada
·
1 Parent(s): 6860f14

travisCI mod - too long url

Browse files
Files changed (1) hide show
  1. tests/contrib/test_playlist.py +2 -1
tests/contrib/test_playlist.py CHANGED
@@ -2,7 +2,8 @@ from pytube import Playlist
2
 
3
 
4
  def test_title():
5
- url = "https://www.youtube.com/playlist?list=PLsyeobzWxl7poL9JTVyndKe62ieoN-MZ3"
 
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"