aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_all_urls.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-04-01 00:25:11 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-04-01 00:25:11 +0200
commit651486621dd79025a1b0ea08abe786b50a9604ad (patch)
treef6b3a5a55b24b5516bae6133ce87e7bc3b4984b3 /test/test_all_urls.py
parent28d9032c88e746860b75a035b053501d3d105f8c (diff)
downloadyoutube-dl-651486621dd79025a1b0ea08abe786b50a9604ad.zip
youtube-dl-651486621dd79025a1b0ea08abe786b50a9604ad.tar.gz
youtube-dl-651486621dd79025a1b0ea08abe786b50a9604ad.tar.bz2
[comedycentral] Allow URLs with query parts (fixes #2661)
Diffstat (limited to 'test/test_all_urls.py')
-rw-r--r--test/test_all_urls.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test_all_urls.py b/test/test_all_urls.py
index dffe3f9..ed041ff 100644
--- a/test/test_all_urls.py
+++ b/test/test_all_urls.py
@@ -150,6 +150,9 @@ class TestAllURLsMatching(unittest.TestCase):
self.assertMatch(
'http://thecolbertreport.cc.com/videos/29w6fx/-realhumanpraise-for-fox-news',
['ComedyCentralShows'])
+ self.assertMatch(
+ 'http://thecolbertreport.cc.com/videos/gh6urb/neil-degrasse-tyson-pt--1?xrs=eml_col_031114',
+ ['ComedyCentralShows'])
if __name__ == '__main__':
unittest.main()