Skip to content

Commit 1743180

Browse files
authored
Merge pull request #4319 from bruntib/fix_compare_results_script
[fix] fix compare_results.py sciprt
2 parents b60576d + 60fd1b8 commit 1743180

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/result_listing/compare_results.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@
1111
import sys
1212

1313
def __sorted_results(result_file):
14-
return json.load(result_file).sort(
14+
results = json.load(result_file)
15+
results.sort(
1516
key=lambda report: report['bugHash'] + str(report['reportId']))
17+
return results
1618

1719
def __print_missing(needles, haystack, haystack_name):
1820
for needle in needles:

0 commit comments

Comments
 (0)