From cd323563edd00382f16188f776a5c182fa34fbbd Mon Sep 17 00:00:00 2001 From: Nikolay Fedotov Date: Mon, 29 Jun 2015 11:57:52 +0300 Subject: [PATCH] Do not mock arping in L3AgentTestFramework functional tests The arping is called using eventlet.spawn_n therefore it should not affect tests execution time. Change-Id: I5a224196b98e1f6fa3478e9984ee6797a7c48b61 --- neutron/tests/functional/agent/test_l3_agent.py | 1 - 1 file changed, 1 deletion(-) diff --git a/neutron/tests/functional/agent/test_l3_agent.py b/neutron/tests/functional/agent/test_l3_agent.py index b35fb074a22..668539edba0 100644 --- a/neutron/tests/functional/agent/test_l3_agent.py +++ b/neutron/tests/functional/agent/test_l3_agent.py @@ -68,7 +68,6 @@ class L3AgentTestFramework(base.BaseSudoTestCase): self.mock_plugin_api = mock.patch( 'neutron.agent.l3.agent.L3PluginApi').start().return_value mock.patch('neutron.agent.rpc.PluginReportStateAPI').start() - mock.patch.object(ip_lib, '_arping').start() self.agent = self._configure_agent('agent1') def _get_config_opts(self):