paramiko: fix build (#10451)

Signed-off-by: David Korczynski <david@adalogics.com>
This commit is contained in:
DavidKorczynski 2023-06-02 15:08:22 +01:00 committed by GitHub
parent 0992435fe4
commit 7df76f3127
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -26,5 +26,5 @@ then
fi
for fuzzer in $(find . -name 'fuzz_*.py'); do
compile_python_fuzzer $fuzzer --add-data loop.py:.
compile_python_fuzzer $fuzzer --add-data _loop.py:.
done

View File

@ -34,7 +34,7 @@ elif __file__:
else:
raise Exception("Could not extract path needed to import loop.py")
sys.path.append(app_path)
from loop import LoopSocket
from _loop import LoopSocket
def TestOneInput(data):
fdp = atheris.FuzzedDataProvider(data)