summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-02-01 15:24:38 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2015-02-01 15:24:38 +0100
commita9551e90207a2bb2ef8f35279fc525846e21cbe4 (patch)
treeedd6272a8e9581a170acc7ec3c1c5b593a19e859
parent4e980275b517b101d5cd3646fee6ced5f627da8a (diff)
downloadyoutube-dl-a9551e90207a2bb2ef8f35279fc525846e21cbe4.tar.gz
youtube-dl-a9551e90207a2bb2ef8f35279fc525846e21cbe4.tar.xz
youtube-dl-a9551e90207a2bb2ef8f35279fc525846e21cbe4.zip
[soundcloud:set] Fix test definition
-rw-r--r--youtube_dl/extractor/soundcloud.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/soundcloud.py b/youtube_dl/extractor/soundcloud.py
index 5d60c4939..c5284fa67 100644
--- a/youtube_dl/extractor/soundcloud.py
+++ b/youtube_dl/extractor/soundcloud.py
@@ -246,6 +246,7 @@ class SoundcloudSetIE(SoundcloudIE):
     _TESTS = [{
         'url': 'https://soundcloud.com/the-concept-band/sets/the-royal-concept-ep',
         'info_dict': {
+            'id': '2284613',
             'title': 'The Royal Concept EP',
         },
         'playlist_mincount': 6,
@@ -279,7 +280,7 @@ class SoundcloudSetIE(SoundcloudIE):
         return {
             '_type': 'playlist',
             'entries': [self._extract_info_dict(track, secret_token=token) for track in info['tracks']],
-            'id': info['id'],
+            'id': '%s' % info['id'],
             'title': info['title'],
         }