From 231f921631b0e1f7b9cbbfdfc64fa4ce8b478584 Mon Sep 17 00:00:00 2001 From: vyzaldysanchez Date: Tue, 6 Feb 2024 12:05:22 -0400 Subject: [PATCH] Fixes py script to point to chainlink files --- fuzz/fuzz_all_native.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fuzz/fuzz_all_native.py b/fuzz/fuzz_all_native.py index bc6c5f7d62d..db43b63899e 100755 --- a/fuzz/fuzz_all_native.py +++ b/fuzz/fuzz_all_native.py @@ -7,13 +7,13 @@ import subprocess import sys -LIBROOT = "../pkg" +LIBROOT = "../" def main(): parser = argparse.ArgumentParser( formatter_class=argparse.RawDescriptionHelpFormatter, description="\n".join([ - "Fuzz helper to run all native go fuzzers in chainlink-common", + "Fuzz helper to run all native go fuzzers in chainlink", "", ]), )