diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2017-04-14 08:51:57 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-04-14 08:51:57 +0000 |
commit | c5e3a343242e728952acf09008f72ea62f1561db (patch) | |
tree | 949319e55509b34963c6c58a012a9ecd114bca94 /functest/opnfv_tests/openstack/snaps/snaps_utils.py | |
parent | e7bf9522650ef591a3903d311e475b4b964e1083 (diff) | |
parent | 4f8235de0071502415da260ea967a65b9327476c (diff) |
Merge "Updated method calls to SNAPS tests."
Diffstat (limited to 'functest/opnfv_tests/openstack/snaps/snaps_utils.py')
-rw-r--r-- | functest/opnfv_tests/openstack/snaps/snaps_utils.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/functest/opnfv_tests/openstack/snaps/snaps_utils.py b/functest/opnfv_tests/openstack/snaps/snaps_utils.py index 4ea1a04a..327ba073 100644 --- a/functest/opnfv_tests/openstack/snaps/snaps_utils.py +++ b/functest/opnfv_tests/openstack/snaps/snaps_utils.py @@ -5,19 +5,15 @@ # # http://www.apache.org/licenses/LICENSE-2.0 -from snaps.openstack.tests import openstack_tests from snaps.openstack.utils import neutron_utils -from functest.utils.constants import CONST - -def get_ext_net_name(): +def get_ext_net_name(os_creds): """ Returns the first external network name + :param: os_creds: an instance of snaps OSCreds object :return: """ - os_env_file = CONST.openstack_creds - os_creds = openstack_tests.get_credentials(os_env_file=os_env_file) neutron = neutron_utils.neutron_client(os_creds) ext_nets = neutron_utils.get_external_networks(neutron) return ext_nets[0]['network']['name'] |