agent: Rename monkey_options to monkey_cmd_args

This commit is contained in:
Ilija Lazoroski 2021-06-21 20:33:19 +02:00 committed by Ilija Lazoroski
parent 680b1f54d0
commit 8c7fe00182
1 changed files with 4 additions and 4 deletions

View File

@ -53,13 +53,13 @@ def build_monkey_commandline_explicitly(
return cmdline
def get_monkey_commandline_windows(destination_path: str, monkey_options: list) -> list:
def get_monkey_commandline_windows(destination_path: str, monkey_cmd_args: list) -> list:
monkey_cmdline = [CMD_EXE, CMD_CARRY_OUT, destination_path, MONKEY_ARG]
return monkey_cmdline + monkey_options
return monkey_cmdline + monkey_cmd_args
def get_monkey_commandline_linux(destination_path: str, monkey_options: list) -> list:
def get_monkey_commandline_linux(destination_path: str, monkey_cmd_args: list) -> list:
monkey_cmdline = [destination_path, MONKEY_ARG]
return monkey_cmdline + monkey_options
return monkey_cmdline + monkey_cmd_args