From: Petr Půlpán Date: Tue, 17 Jun 2014 14:03:03 +0000 (+0200) Subject: [ustream:channel] replace test for an updated channel X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=a14e1538fe66c49ca8869681d2bbe60a36bd420d;p=youtube-dl [ustream:channel] replace test for an updated channel --- diff --git a/test/test_playlists.py b/test/test_playlists.py index 465b07b9e..ee91e412a 100644 --- a/test/test_playlists.py +++ b/test/test_playlists.py @@ -114,10 +114,10 @@ class TestPlaylists(unittest.TestCase): def test_ustream_channel(self): dl = FakeYDL() ie = UstreamChannelIE(dl) - result = ie.extract('http://www.ustream.tv/channel/young-americans-for-liberty') + result = ie.extract('http://www.ustream.tv/channel/channeljapan') self.assertIsPlaylist(result) - self.assertEqual(result['id'], '5124905') - self.assertTrue(len(result['entries']) >= 6) + self.assertEqual(result['id'], '10874166') + self.assertTrue(len(result['entries']) >= 54) def test_soundcloud_set(self): dl = FakeYDL()