diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-02-15 15:34:17 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-02-15 15:34:17 +0100 |
commit | 6a7a38967976ea0d0b911c2965aaa74bed2976d7 (patch) | |
tree | bc53f64809c3634411b1a6bac6b4639cadd0197f /test | |
parent | 4edff78531c42aa126b02a9b792f84d2775c2172 (diff) | |
parent | 99043c2ea5a670587b005a9cae33cd138a515290 (diff) |
Merge branch 'master' of github.com:rg3/youtube-dl
Diffstat (limited to 'test')
-rw-r--r-- | test/test_playlists.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_playlists.py b/test/test_playlists.py index e0eb05460..1de9e8ec1 100644 --- a/test/test_playlists.py +++ b/test/test_playlists.py @@ -55,10 +55,10 @@ class TestPlaylists(unittest.TestCase): def test_dailymotion_user(self): dl = FakeYDL() ie = DailymotionUserIE(dl) - result = ie.extract('http://www.dailymotion.com/user/generation-quoi/') + result = ie.extract('https://www.dailymotion.com/user/nqtv') self.assertIsPlaylist(result) - self.assertEqual(result['title'], 'Génération Quoi') - self.assertTrue(len(result['entries']) >= 26) + self.assertEqual(result['title'], 'Rémi Gaillard') + self.assertTrue(len(result['entries']) >= 100) def test_vimeo_channel(self): dl = FakeYDL() |