Skip to content

Commit

Permalink
Fix test_youtube_flat_playlist_extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkf committed Nov 1, 2021
1 parent 0403539 commit ad1356f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_youtube_lists.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def test_youtube_flat_playlist_extraction(self):
entries = list(result['entries'])
self.assertTrue(len(entries) == 1)
video = entries[0]
self.assertEqual(video['_type'], 'url_transparent')
self.assertEqual(video['_type'], 'url')
self.assertEqual(video['ie_key'], 'Youtube')
self.assertEqual(video['id'], 'BaW_jenozKc')
self.assertEqual(video['url'], 'BaW_jenozKc')
Expand Down

0 comments on commit ad1356f

Please sign in to comment.