diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/test_all_urls.py | 7 | 
1 files changed, 6 insertions, 1 deletions
diff --git a/test/test_all_urls.py b/test/test_all_urls.py index 5b6d18a82..dffe3f958 100644 --- a/test/test_all_urls.py +++ b/test/test_all_urls.py @@ -144,7 +144,12 @@ class TestAllURLsMatching(unittest.TestCase):          self.assertMatch('http://video.pbs.org/widget/partnerplayer/980042464/', ['PBS'])      def test_ComedyCentralShows(self): -        self.assertMatch('http://thedailyshow.cc.com/extended-interviews/xm3fnq/andrew-napolitano-extended-interview', ['ComedyCentralShows']) +        self.assertMatch( +            'http://thedailyshow.cc.com/extended-interviews/xm3fnq/andrew-napolitano-extended-interview', +            ['ComedyCentralShows']) +        self.assertMatch( +            'http://thecolbertreport.cc.com/videos/29w6fx/-realhumanpraise-for-fox-news', +            ['ComedyCentralShows'])  if __name__ == '__main__':      unittest.main()  | 
