diff options
| author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2016-04-17 17:07:57 +0200 | 
|---|---|---|
| committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2016-04-17 17:07:57 +0200 | 
| commit | 1b6182d8f759546b54a675123901348361bad979 (patch) | |
| tree | e3552f926d004d6bb22605cb2f34e05793540210 /test/test_youtube_lists.py | |
| parent | 7bab22a4029feb651d08f4b631359a0d1aaffd71 (diff) | |
[youtube:playlist] Fetch all the videos in a mix (fixes #3837)
Since there doesn't seem to be any indication, it stops when there aren't new videos in the webpage.
Diffstat (limited to 'test/test_youtube_lists.py')
| -rw-r--r-- | test/test_youtube_lists.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_youtube_lists.py b/test/test_youtube_lists.py index 47df0f348..af1c45421 100644 --- a/test/test_youtube_lists.py +++ b/test/test_youtube_lists.py @@ -44,7 +44,7 @@ class TestYoutubeLists(unittest.TestCase):          ie = YoutubePlaylistIE(dl)          result = ie.extract('https://www.youtube.com/watch?v=W01L70IGBgE&index=2&list=RDOQpdSVF_k_w')          entries = result['entries'] -        self.assertTrue(len(entries) >= 20) +        self.assertTrue(len(entries) >= 50)          original_video = entries[0]          self.assertEqual(original_video['id'], 'OQpdSVF_k_w')  | 
