Skip to content

Commit d4f33f6

Browse files
committed
Bug 1656410 - Fix py3 sort failure in test-info report --show-manifests; r=bc
Differential Revision: https://phabricator.services.mozilla.com/D85619
1 parent 583e1cc commit d4f33f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing/testinfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -902,7 +902,7 @@ def matches_filters(test):
902902
if t.get('skip-if'):
903903
manifest_info['skipped'] += 1
904904
for key in by_component['manifests']:
905-
by_component['manifests'][key].sort()
905+
by_component['manifests'][key].sort(key=lambda k: k['manifest'])
906906

907907
if show_tests:
908908
by_component['tests'] = {}

0 commit comments

Comments
 (0)