From 567d113697a29e06efefea9e0e3089fd1114622d Mon Sep 17 00:00:00 2001 From: Yakov Olkhovskiy Date: Sun, 20 Oct 2024 15:19:22 +0000 Subject: [PATCH] fix --- tests/ci/libfuzzer_test_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ci/libfuzzer_test_check.py b/tests/ci/libfuzzer_test_check.py index 7012bd08418..6899083e837 100644 --- a/tests/ci/libfuzzer_test_check.py +++ b/tests/ci/libfuzzer_test_check.py @@ -196,7 +196,7 @@ def process_results(result_path: Path): fails += 1 if file_path_out.exists(): result.set_raw_logs("\n".join(process_error(file_path_out))) - if file_path_unit.exists: + if file_path_unit.exists(): result.set_log_files(f"['{file_path_unit}']") test_results.append(result)