From 30b1032d38c5d5f62a31255faefb1eef1096a0ec Mon Sep 17 00:00:00 2001 From: Ilija Lazoroski Date: Wed, 27 Jul 2022 16:59:15 +0200 Subject: [PATCH] BB: Fix depth_3_a test configuration --- envs/monkey_zoo/blackbox/test_configurations/depth_3_a.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/envs/monkey_zoo/blackbox/test_configurations/depth_3_a.py b/envs/monkey_zoo/blackbox/test_configurations/depth_3_a.py index 75f9ad318..920e325e4 100644 --- a/envs/monkey_zoo/blackbox/test_configurations/depth_3_a.py +++ b/envs/monkey_zoo/blackbox/test_configurations/depth_3_a.py @@ -49,7 +49,7 @@ def _add_tcp_ports(agent_configuration: AgentConfiguration) -> AgentConfiguratio agent_configuration = set_maximum_depth(noop_test_configuration.agent_configuration, 3) -agent_configuration = set_keep_tunnel_open_time(noop_test_configuration.agent_configuration, 20) +agent_configuration = set_keep_tunnel_open_time(agent_configuration, 20) agent_configuration = _add_exploiters(agent_configuration) agent_configuration = _add_subnets(agent_configuration) agent_configuration = _add_tcp_ports(agent_configuration)