forked from p15670423/monkey
agent: Update unit test for build_monkey_commandline
Co-authored-by: Mike Salvatore <mike.s.salvatore@gmail.com>
This commit is contained in:
parent
b65b26e856
commit
8ee1ce6706
|
@ -100,7 +100,7 @@ def test_build_monkey_commandline():
|
||||||
example_host = VictimHost(ip_addr="bla")
|
example_host = VictimHost(ip_addr="bla")
|
||||||
example_host.set_default_server("101010")
|
example_host.set_default_server("101010")
|
||||||
|
|
||||||
expected = "-p " + GUID + " -s 101010 -d 0 -l /home/bla -vp 80"
|
expected = f"-p {GUID} -s 101010 -d 0 -l /home/bla -vp 80"
|
||||||
actual = build_monkey_commandline(
|
actual = build_monkey_commandline(
|
||||||
target_host=example_host, depth=0, vulnerable_port="80", location="/home/bla"
|
target_host=example_host, depth=0, vulnerable_port="80", location="/home/bla"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue