Automatic style fix

This commit is contained in:
robot-clickhouse 2024-10-23 15:13:04 +00:00
parent 19cdbf62c5
commit a5e3f7a213

View File

@ -98,7 +98,9 @@ def run_fuzzer(fuzzer: str, timeout: int):
with_fuzzer_args = ""
if use_fuzzer_args:
env = {"FUZZER_ARGS": f"{custom_libfuzzer_options} {libfuzzer_corpora}"}
with_fuzzer_args = f" with FUZZER_ARGS '{custom_libfuzzer_options} {libfuzzer_corpora}'"
with_fuzzer_args = (
f" with FUZZER_ARGS '{custom_libfuzzer_options} {libfuzzer_corpora}'"
)
else:
cmd_line += f" {custom_libfuzzer_options} {libfuzzer_corpora}"