summaryrefslogtreecommitdiff
path: root/nova/tests/functional/integrated_helpers.py
diff options
context:
space:
mode:
authorStephen Finucane <sfinucan@redhat.com>2019-12-16 09:57:34 +0000
committerStephen Finucane <sfinucan@redhat.com>2020-01-08 13:54:12 +0000
commitdf001770938afdad61f4579498d4153450554788 (patch)
treeefd27b5a37b79610ede81d64b7b3e1e8fb03bedc /nova/tests/functional/integrated_helpers.py
parent656c18eaf290a3b6ddf743c953f5cdf1d3fb2f05 (diff)
downloadnova-df001770938afdad61f4579498d4153450554788.tar.gz
nova-net: Remove final references to nova-network
Strip out everything matching '(is|use)_neutron', except the tests for nova-network code and two other places that these tests rely on. Along the way, remove a whole load of apparently unnecessary mocking that clearly wasn't caught when we switched over the bulk of testing to use the neutron network driver. Change-Id: Ifa9c5c468400261a5e1f66b72c575845173a4f8f Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
Diffstat (limited to 'nova/tests/functional/integrated_helpers.py')
-rw-r--r--nova/tests/functional/integrated_helpers.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/nova/tests/functional/integrated_helpers.py b/nova/tests/functional/integrated_helpers.py
index 7b01d547dd..b9e3b10ef2 100644
--- a/nova/tests/functional/integrated_helpers.py
+++ b/nova/tests/functional/integrated_helpers.py
@@ -252,11 +252,6 @@ class _IntegratedTestBase(test.TestCase):
def setUp(self):
super(_IntegratedTestBase, self).setUp()
- # NOTE(mikal): this is used to stub away privsep helpers
- def fake_noop(*args, **kwargs):
- return None
- self.stub_out('nova.privsep.linux_net.bind_ip', fake_noop)
-
self.fake_image_service =\
nova.tests.unit.image.fake.stub_out_image_service(self)