summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-01-08 17:05:46 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2015-01-08 18:03:29 +0100
commitdb6e6250050d011b801f01a665e644bb41be40cf (patch)
treebda3abb3b0b69f1f9f1c6c6a4911bd041462db4d
parent811cacdc2c62bea63c6fbd4a3e570744257c37a6 (diff)
downloadyoutube-dl-db6e6250050d011b801f01a665e644bb41be40cf.tar.gz
youtube-dl-db6e6250050d011b801f01a665e644bb41be40cf.tar.xz
youtube-dl-db6e6250050d011b801f01a665e644bb41be40cf.zip
[buzzfeed] Fix test
-rw-r--r--youtube_dl/extractor/buzzfeed.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/buzzfeed.py b/youtube_dl/extractor/buzzfeed.py
index a40a1bbc4..a5d2af174 100644
--- a/youtube_dl/extractor/buzzfeed.py
+++ b/youtube_dl/extractor/buzzfeed.py
@@ -33,7 +33,7 @@ class BuzzFeedIE(InfoExtractor):
             'skip_download': True,  # Got enough YouTube download tests
         },
         'info_dict': {
-            'description': 'Munchkin the Teddy Bear is back !',
+            'description': 're:Munchkin the Teddy Bear is back ?!',
             'title': 'You Need To Stop What You\'re Doing And Watching This Dog Walk On A Treadmill',
         },
         'playlist': [{
@@ -42,9 +42,9 @@ class BuzzFeedIE(InfoExtractor):
                 'ext': 'mp4',
                 'upload_date': '20141124',
                 'uploader_id': 'CindysMunchkin',
-                'description': '© 2014 Munchkin the Shih Tzu\nAll rights reserved\nFacebook: http://facebook.com/MunchkintheShihTzu',
+                'description': 're:© 2014 Munchkin the Shih Tzu',
                 'uploader': 'Munchkin the Shih Tzu',
-                'title': 'Munchkin the Teddy Bear gets her exercise',
+                'title': 're:Munchkin the Teddy Bear gets her exercise',
             },
         }]
     }]