Skip to content

Commit ffd55e8

Browse files
Fix argument order (#4407)
There's no misbehavior as a result of this bug due to default argument handling.
1 parent 9698352 commit ffd55e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/clusterfuzz/_internal/bot/testcase_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ def _do_run_testcase_and_return_result_in_queue(crash_queue,
535535
# Don't upload uninteresting testcases (no crash) or if there is no log to
536536
# correlate it with (not upload_output).
537537
if upload_output:
538-
upload_testcase(file_path, log_time, None)
538+
upload_testcase(file_path, None, log_time)
539539

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

0 commit comments

Comments
 (0)