about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-04-28 15:50:29 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-04-28 15:50:29 +0200
commit9665577802a622827fa5fcacc737668b574f7cfc (patch)
tree7afb02c1e6a48bde8d8f9f8860e1bc3c3f24d81f
parent434aca5b143fe358ae46688196391307834168fa (diff)
downloadyoutube-dl-9665577802a622827fa5fcacc737668b574f7cfc.tar.gz
youtube-dl-9665577802a622827fa5fcacc737668b574f7cfc.tar.xz
youtube-dl-9665577802a622827fa5fcacc737668b574f7cfc.zip
Adapt tests to changes in youtube's "Most Popular" channel
-rw-r--r--test/test_youtube_lists.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_youtube_lists.py b/test/test_youtube_lists.py
index b11e6ccaa..3722ff5ba 100644
--- a/test/test_youtube_lists.py
+++ b/test/test_youtube_lists.py
@@ -97,7 +97,7 @@ class TestYoutubeLists(unittest.TestCase):
         self.assertTrue(len(result['entries']) > 90)
         #test autogenerated channel
         result = ie.extract('https://www.youtube.com/channel/HCtnHdj3df7iM/videos')[0]
-        self.assertTrue(len(result['entries']) > 20)
+        self.assertTrue(len(result['entries']) >= 18)
 
     def test_youtube_user(self):
         dl = FakeDownloader()