Browse Source

Replace test for dailymotion users

Jaime Marquínez Ferrándiz 11 years ago
parent
commit
99043c2ea5
1 changed files with 3 additions and 3 deletions
  1. 3 3
      test/test_playlists.py

+ 3 - 3
test/test_playlists.py

@@ -55,10 +55,10 @@ class TestPlaylists(unittest.TestCase):
     def test_dailymotion_user(self):
     def test_dailymotion_user(self):
         dl = FakeYDL()
         dl = FakeYDL()
         ie = DailymotionUserIE(dl)
         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.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):
     def test_vimeo_channel(self):
         dl = FakeYDL()
         dl = FakeYDL()