Skip to content

Commit

Permalink
Fix argument order (#4407)
Browse files Browse the repository at this point in the history
There's no misbehavior as a result of this bug due to default argument
handling.
  • Loading branch information
jonathanmetzman authored Nov 14, 2024
1 parent 9698352 commit ffd55e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clusterfuzz/_internal/bot/testcase_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ def _do_run_testcase_and_return_result_in_queue(crash_queue,
# Don't upload uninteresting testcases (no crash) or if there is no log to
# correlate it with (not upload_output).
if upload_output:
upload_testcase(file_path, log_time, None)
upload_testcase(file_path, None, log_time)

if upload_output:
# Include full output for uploaded logs (crash output, merge output, etc).
Expand Down

0 comments on commit ffd55e8

Please sign in to comment.