Skip to content

Commit 257f96b

Browse files
authored
Fix breakage of coverage PR report cause by #2682. (#2704)
The `note` was the fourth parameter, but was made fifth in #2682.
1 parent a42a7a6 commit 257f96b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/fireci/fireciplugins/coverage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def coverage(pull_request, log, metrics_service_url, access_token):
6161
Report files are located at `<product-build-dir>/reports/jacoco/`.
6262
'''
6363

64-
uploader.post_report(test_report, metrics_service_url, access_token, note)
64+
uploader.post_report(test_report, metrics_service_url, access_token, note=note)
6565

6666

6767
def _parse_xml_reports():

0 commit comments

Comments
 (0)