From: Eugene Nikanorov Date: Wed, 29 Oct 2014 15:07:33 +0000 (+0400) Subject: Fix sneaky copypaste typo in ovs agent scheduler test X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=ca087807136aeaedcb3ec945166a9d3371098868;p=openstack-build%2Fneutron-build.git Fix sneaky copypaste typo in ovs agent scheduler test Change-Id: I3433e0bcd9834cbf387da42b8e69df9a5127b1bf --- diff --git a/neutron/tests/unit/openvswitch/test_agent_scheduler.py b/neutron/tests/unit/openvswitch/test_agent_scheduler.py index 7bd18da1b..b492fa38a 100644 --- a/neutron/tests/unit/openvswitch/test_agent_scheduler.py +++ b/neutron/tests/unit/openvswitch/test_agent_scheduler.py @@ -235,9 +235,10 @@ class OvsAgentSchedulerTestCaseBase(test_l3_plugin.L3NatTestCaseMixin, self.l3_notify_p = mock.patch( 'neutron.extensions.l3agentscheduler.notify') self.patched_l3_notify = self.l3_notify_p.start() - self.l3_periodic_p = mock.patch('neutron.db.L3AgentSchedulerDbMixin.' + self.l3_periodic_p = mock.patch('neutron.db.l3_agentschedulers_db.' + 'L3AgentSchedulerDbMixin.' 'start_periodic_agent_status_check') - self.patched_l3_periodic = self.l3_notify_p.start() + self.patched_l3_periodic = self.l3_periodic_p.start() self.dhcp_notify_p = mock.patch( 'neutron.extensions.dhcpagentscheduler.notify') self.patched_dhcp_notify = self.dhcp_notify_p.start()