Skip to content

Commit

Permalink
fix: rewriting of test result reports (#844)
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph-sentry authored Nov 1, 2024
1 parent 9c70365 commit 25b28c4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tasks/test_results_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -493,9 +493,8 @@ def process_individual_arg(
),
)

readable_report = self.rewrite_readable(network, report_contents)

archive_service.write_file(upload.storage_path, readable_report.getvalue())
readable_report = self.rewrite_readable(network, report_contents)
archive_service.write_file(upload.storage_path, readable_report.getvalue())

return TestResultsProcessingResult(
network_files=network, parsing_results=parsing_results
Expand Down

0 comments on commit 25b28c4

Please sign in to comment.