From b2b20cb714c4c924d1ef89a21b7279fd5d9b5a48 Mon Sep 17 00:00:00 2001 From: Katarzyna Treder Date: Mon, 7 Oct 2024 13:13:22 +0200 Subject: [PATCH] Fix parameter type in peach fuzzer get_fuzzed_command method Signed-off-by: Katarzyna Treder --- test_tools/peach_fuzzer/peach_fuzzer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_tools/peach_fuzzer/peach_fuzzer.py b/test_tools/peach_fuzzer/peach_fuzzer.py index d485603..3301d20 100644 --- a/test_tools/peach_fuzzer/peach_fuzzer.py +++ b/test_tools/peach_fuzzer/peach_fuzzer.py @@ -38,7 +38,7 @@ class PeachFuzzer: escape_chars = '\\\n"\'&|;()`<>$! ' @classmethod - def get_fuzzed_command(cls, command_template: bytes, count: int): + def get_fuzzed_command(cls, command_template: str, count: int): """ Generate command with fuzzed parameter provided on command_template. :param command_template: string with command to be executed.