mirror of https://github.com/yt-dlp/yt-dlp.git
[test_all_urls] PEP 8 and change wording
This commit is contained in:
parent
e3a6747d8f
commit
fd7a7498a4
|
@ -134,9 +134,11 @@ class TestAllURLsMatching(unittest.TestCase):
|
||||||
def test_no_duplicated_ie_names(self):
|
def test_no_duplicated_ie_names(self):
|
||||||
name_accu = collections.defaultdict(list)
|
name_accu = collections.defaultdict(list)
|
||||||
for ie in self.ies:
|
for ie in self.ies:
|
||||||
name_accu[ie.IE_NAME.lower()].append(ie)
|
name_accu[ie.IE_NAME.lower()].append(type(ie).__name__)
|
||||||
for (ie_name, ie_list) in name_accu.items():
|
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))
|
self.assertEqual(
|
||||||
|
len(ie_list), 1,
|
||||||
|
'Multiple extractors with the same IE_NAME "%s" (%s)' % (ie_name, ', '.join(ie_list)))
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|
Loading…
Reference in New Issue