diff options
| author | dst <dstftw@gmail.com> | 2014-01-28 09:13:08 +0700 | 
|---|---|---|
| committer | dst <dstftw@gmail.com> | 2014-01-28 09:13:08 +0700 | 
| commit | 98669ed79c10bbcfc5678a520de98df79ca6b1b4 (patch) | |
| tree | d7002d80e47d32ff72c67dadb4317c10c4d7a536 /test/test_playlists.py | |
| parent | a3978a615950af6e990313820f93baddce067ee4 (diff) | |
[imdb] Fix playlist test
Diffstat (limited to 'test/test_playlists.py')
| -rw-r--r-- | test/test_playlists.py | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_playlists.py b/test/test_playlists.py index 5eeba091e..a8f4a49f4 100644 --- a/test/test_playlists.py +++ b/test/test_playlists.py @@ -195,11 +195,11 @@ class TestPlaylists(unittest.TestCase):      def test_imdb_list(self):          dl = FakeYDL()          ie = ImdbListIE(dl) -        result = ie.extract('http://www.imdb.com/list/sMjedvGDd8U') +        result = ie.extract('http://www.imdb.com/list/JFs9NWw6XI0')          self.assertIsPlaylist(result) -        self.assertEqual(result['id'], 'sMjedvGDd8U') -        self.assertEqual(result['title'], 'Animated and Family Films') -        self.assertTrue(len(result['entries']) >= 48) +        self.assertEqual(result['id'], 'JFs9NWw6XI0') +        self.assertEqual(result['title'], 'March 23, 2012 Releases') +        self.assertEqual(len(result['entries']), 7)      def test_khanacademy_topic(self):          dl = FakeYDL()  | 
