diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2017-01-23 13:19:05 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-01-23 13:19:05 +0000 |
commit | 7e7f9c8ef5393d4dc0812cbca82f4358cd93e583 (patch) | |
tree | dec452cebf73f84f23660b14e30a5f0f06b6338b /functest/opnfv_tests/sdn/onos/sfc | |
parent | 1015e2f16285c24fb510c9b937bcef593c940ae8 (diff) | |
parent | 64b199fd56e914a8511a8c59f3e08d012f627ec5 (diff) |
Merge "Fix for opnfv onos-sfc scripts"
Diffstat (limited to 'functest/opnfv_tests/sdn/onos/sfc')
-rw-r--r-- | functest/opnfv_tests/sdn/onos/sfc/sfc_onos.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/functest/opnfv_tests/sdn/onos/sfc/sfc_onos.py b/functest/opnfv_tests/sdn/onos/sfc/sfc_onos.py index 349b42a8..090502ba 100644 --- a/functest/opnfv_tests/sdn/onos/sfc/sfc_onos.py +++ b/functest/opnfv_tests/sdn/onos/sfc/sfc_onos.py @@ -232,10 +232,8 @@ class SfcOnos: else: return(response.status_code) - url = ("http://%s:8774//v2.1/%s/ports/" - "%s/flavors?name=m1.tiny" % (self.nova_hostname, - self.tenant_id)) - + url = ("http://%s:8774/v2.1/%s/flavors?" + "name=m1.tiny" % (self.nova_hostname, self.tenant_id)) headers = {"Accept": "application/json", "Content-Type": "application/json", "X-Auth-Token": self.token_id} response = requests.get(url, headers=headers) @@ -344,7 +342,7 @@ class SfcOnos: def getPortPair(self): """Query the Portpair id value.""" for p in range(0, 1): - url = ("http://%s:9696/%s/ports/" + url = ("http://%s:9696/%s/" "sfc/port_pairs?name=PP1" % (self.neutron_hostname, self.osver)) headers = {"Accept": "application/json", |