aboutsummaryrefslogtreecommitdiffstats
path: root/sfc/tests/functest/sfc_two_chains_SSH_and_HTTP.py
diff options
context:
space:
mode:
authorNikos Mimigiannis <nmimi@intracom-telecom.com>2018-10-31 11:10:18 +0200
committerNikos Mimigiannis <nmimi@intracom-telecom.com>2018-11-26 13:12:22 +0200
commit01e261ef7640be1764586a7a6ad67f45596a8a46 (patch)
tree5e11f957e6766558f803b66e71cafbe93156bb96 /sfc/tests/functest/sfc_two_chains_SSH_and_HTTP.py
parent61599026dc4f0a940d0e3aa7d724494222ee1415 (diff)
Migrate SNAPS to Openstack-SDK
JIRA: SFC-137 This patch replaces SNAPS library with openstack_SDK library for TCs with mano component: no-mano Change-Id: I99b9a5f54a273f61ecff05a11616440d5e85e55b Signed-off-by: Nikos Mimigiannis <nmimi@intracom-telecom.com>
Diffstat (limited to 'sfc/tests/functest/sfc_two_chains_SSH_and_HTTP.py')
-rw-r--r--sfc/tests/functest/sfc_two_chains_SSH_and_HTTP.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/sfc/tests/functest/sfc_two_chains_SSH_and_HTTP.py b/sfc/tests/functest/sfc_two_chains_SSH_and_HTTP.py
index e2037a41..0cfbea22 100644
--- a/sfc/tests/functest/sfc_two_chains_SSH_and_HTTP.py
+++ b/sfc/tests/functest/sfc_two_chains_SSH_and_HTTP.py
@@ -46,9 +46,8 @@ class SfcTwoChainsSSHandHTTP(sfc_parent_function.SfcCommonTestCase):
t1 = threading.Thread(target=odl_utils.wait_for_classification_rules,
args=(self.ovs_logger, self.compute_nodes,
self.odl_ip, self.odl_port,
- self.client_instance.compute_host,
- [self.neutron_client_port],))
-
+ self.client_instance.hypervisor_hostname,
+ [self.neutron_port],))
try:
t1.start()
except Exception as e:
@@ -82,8 +81,8 @@ class SfcTwoChainsSSHandHTTP(sfc_parent_function.SfcCommonTestCase):
t2 = threading.Thread(target=odl_utils.wait_for_classification_rules,
args=(self.ovs_logger, self.compute_nodes,
self.odl_ip, self.odl_port,
- self.client_instance.compute_host,
- self.neutron_client_port,))
+ self.client_instance.hypervisor_hostname,
+ self.neutron_port,))
try:
t2.start()
except Exception as e: