Remove novaclient/neutronclient description
When we implemented scenario tests, we were using novaclient and
the other client for doing that. But now we don't use novaclient/
neutronclient at all.
So this patch removes novaclient/neutronclient description.
Change-Id: Ic6c6d9fa3ce36327f4f06d1a33a291c057a9f5bc
diff --git a/tempest/scenario/manager.py b/tempest/scenario/manager.py
index ffeda1b..2226179 100644
--- a/tempest/scenario/manager.py
+++ b/tempest/scenario/manager.py
@@ -562,9 +562,7 @@
raise
def create_floating_ip(self, thing, pool_name=None):
- """Creates a floating IP and associates to a server using
- Nova clients
- """
+ """Create a floating IP and associates to a server on Nova"""
floating_ip = (self.compute_floating_ips_client.
create_floating_ip(pool_name)['floating_ip'])
@@ -775,9 +773,7 @@
def create_floating_ip(self, thing, external_network_id=None,
port_id=None, client=None):
- """Creates a floating IP and associates to a resource/port using
- Neutron client
- """
+ """Create a floating IP and associates to a resource/port on Neutron"""
if not external_network_id:
external_network_id = CONF.network.public_network_id
if not client: