[CI] Fix printing of test report in summary view (#173314)

ffe973a3e76eab1f19cfd58418891ffa24f6ad46 changed some of the internal
APIs to return a tuple instead of just the report. This callsite was
never updated which resulted in the tuple being printed to the summary
view when we only wanted the report.
This commit is contained in:
Aiden Grossman 2025-12-22 16:14:01 -08:00 committed by GitHub
parent 315dee1fdb
commit 40d97e9060
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -16,7 +16,7 @@ if __name__ == "__main__":
)
args = parser.parse_args()
report = generate_test_report_lib.generate_report_from_files(
report, explained = generate_test_report_lib.generate_report_from_files(
generate_test_report_lib.compute_platform_title(),
args.return_code,
args.build_test_logs,