Fix testing urls for SoundCloud

This commit is contained in:
Juda Kaleta 2013-12-18 09:09:39 +01:00
parent 82ca733850
commit d8964d6633
2 changed files with 2 additions and 2 deletions

View file

@ -85,7 +85,7 @@ class VimeoBackendTestCase(BackendTestMixin, TestCase):
class SoundCloudBackendTestCase(BackendTestMixin, TestCase):
urls = (
('https://soundcloud.com/glassnote/mumford-sons-i-will-wait', '67129237'),
('https://soundcloud.com/community/soundcloud-case-study-wildlife', '82244706'),
('https://soundcloud.com/matej-roman/jaromir-nohavica-karel-plihal-mikymauz', '7834701'),
('https://soundcloud.com/beny97/sets/jaromir-nohavica-prazska', '960591'),
('https://soundcloud.com/corbel-keep/norah-jones-come-away-with', '22485933'),

View file

@ -95,7 +95,7 @@ class EmbedVideoNodeTestCase(TestCase):
def test_tag_backend_variable_soundcloud(self):
template = Template("""
{% load embed_video_tags %}
{% video 'https://soundcloud.com/glassnote/mumford-sons-i-will-wait' as soundcloud %}
{% video 'https://soundcloud.com/community/soundcloud-case-study-wildlife' as soundcloud %}
{{ soundcloud.backend }}
{% endvideo %}
""")