Bug 1656410 - Fix py3 sort failure in test-info report --show-manifests; r=bc

Differential Revision: https://phabricator.services.mozilla.com/D85619
This commit is contained in:
Geoff Brown 2020-07-31 18:52:29 +00:00
Родитель 583e1cc437
Коммит d4f33f633f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -902,7 +902,7 @@ class TestInfoReport(TestInfo):
if t.get('skip-if'):
manifest_info['skipped'] += 1
for key in by_component['manifests']:
by_component['manifests'][key].sort()
by_component['manifests'][key].sort(key=lambda k: k['manifest'])
if show_tests:
by_component['tests'] = {}