Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nficano committed Feb 7, 2018
1 parent 1d68814 commit 6a71666
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions tests/test_playlist.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# -*- coding: utf-8 -*-
from pytube import playlist
from pytube import Playlist



def test_construct():
ob = playlist.Playlist(
ob = Playlist(
'https://www.youtube.com/watch?v=m5q2GCsteQs&list='
'PL525f8ds9RvsXDl44X6Wwh9t3fCzFNApw',
)
Expand All @@ -15,7 +16,7 @@ def test_construct():


def test_link_parse():
ob = playlist.Playlist(
ob = Playlist(
'https://www.youtube.com/watch?v=m5q2GCsteQs&list='
'PL525f8ds9RvsXDl44X6Wwh9t3fCzFNApw',
)
Expand All @@ -29,7 +30,7 @@ def test_link_parse():


def test_populate():
ob = playlist.Playlist(
ob = Playlist(
'https://www.youtube.com/watch?v=m5q2GCsteQs&list='
'PL525f8ds9RvsXDl44X6Wwh9t3fCzFNApw',
)
Expand All @@ -44,7 +45,7 @@ def test_populate():


def test_download():
ob = playlist.Playlist(
ob = Playlist(
'https://www.youtube.com/watch?v=lByG_AgKS9k&list='
'PL525f8ds9RvuerPZ3bZygmNiYw2sP4BDk',
)
Expand Down

0 comments on commit 6a71666

Please sign in to comment.