Browse Source

[test_all_urls] PEP 8 and change wording

totalwebcasting
Sergey M․ 8 years ago
parent
commit
fd7a7498a4
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 5 additions and 3 deletions
  1. +5
    -3
      test/test_all_urls.py

+ 5
- 3
test/test_all_urls.py View File

@ -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__':


Loading…
Cancel
Save