youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit fd7a7498a47c5d79663ec8d86a87325aa634c652
parent e3a6747d8f19ad0ba8aee7c3214cdb64903beba0
Author: Sergey M․ <dstftw@gmail.com>
Date:   Mon, 27 Jun 2016 22:11:45 +0700

[test_all_urls] PEP 8 and change wording

Diffstat:
Mtest/test_all_urls.py | 8+++++---
1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/test/test_all_urls.py b/test/test_all_urls.py @@ -134,9 +134,11 @@ class TestAllURLsMatching(unittest.TestCase): def test_no_duplicated_ie_names(self): name_accu = collections.defaultdict(list) for ie in self.ies: - name_accu[ie.IE_NAME.lower()].append(ie) - for (ie_name,ie_list) in name_accu.items(): - self.assertEqual(len(ie_list), 1, 'Only 1 extractor with IE_NAME "%s" (%s)' % (ie_name, ie_list)) + name_accu[ie.IE_NAME.lower()].append(type(ie).__name__) + for (ie_name, ie_list) in name_accu.items(): + self.assertEqual( + len(ie_list), 1, + 'Multiple extractors with the same IE_NAME "%s" (%s)' % (ie_name, ', '.join(ie_list))) if __name__ == '__main__':