diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2018-02-20 10:17:18 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-02-20 10:17:18 +0000 |
commit | 1a04979f3fff45117754653e20758d2ac6a02615 (patch) | |
tree | 001bd04d4370e232efb1a253ceb8e84ca5845a94 /functest/opnfv_tests/openstack/snaps | |
parent | de3160230a010e5fd2aaf03630e31e807aeee34f (diff) | |
parent | edac6a883e0b80724140305258649b4891a2d14c (diff) |
Merge "Remove last CONST.__getattribute__()"
Diffstat (limited to 'functest/opnfv_tests/openstack/snaps')
-rw-r--r-- | functest/opnfv_tests/openstack/snaps/snaps_test_runner.py | 9 | ||||
-rw-r--r-- | functest/opnfv_tests/openstack/snaps/snaps_utils.py | 5 |
2 files changed, 6 insertions, 8 deletions
diff --git a/functest/opnfv_tests/openstack/snaps/snaps_test_runner.py b/functest/opnfv_tests/openstack/snaps/snaps_test_runner.py index 216d9acf..34d56f70 100644 --- a/functest/opnfv_tests/openstack/snaps/snaps_test_runner.py +++ b/functest/opnfv_tests/openstack/snaps/snaps_test_runner.py @@ -38,13 +38,12 @@ class SnapsTestRunner(unit.Suite): self.netconf_override = None if hasattr(CONST, 'snaps_network_config'): - self.netconf_override = CONST.__getattribute__( - 'snaps_network_config') + self.netconf_override = getattr(CONST, 'snaps_network_config') self.use_fip = ( - CONST.__getattribute__('snaps_use_floating_ips') == 'True') + getattr(CONST, 'snaps_use_floating_ips') == 'True') self.use_keystone = ( - CONST.__getattribute__('snaps_use_keystone') == 'True') + getattr(CONST, 'snaps_use_keystone') == 'True') scenario = env.get('DEPLOY_SCENARIO') self.flavor_metadata = None @@ -55,4 +54,4 @@ class SnapsTestRunner(unit.Suite): self.image_metadata = None if hasattr(CONST, 'snaps_images'): - self.image_metadata = CONST.__getattribute__('snaps_images') + self.image_metadata = getattr(CONST, 'snaps_images') diff --git a/functest/opnfv_tests/openstack/snaps/snaps_utils.py b/functest/opnfv_tests/openstack/snaps/snaps_utils.py index 59bd063c..4b1c9352 100644 --- a/functest/opnfv_tests/openstack/snaps/snaps_utils.py +++ b/functest/opnfv_tests/openstack/snaps/snaps_utils.py @@ -53,10 +53,9 @@ def get_credentials(proxy_settings_str=None, ssh_proxy_cmd=None): """ creds_override = None if hasattr(CONST, 'snaps_os_creds_override'): - creds_override = CONST.__getattribute__( - 'snaps_os_creds_override') + creds_override = getattr(CONST, 'snaps_os_creds_override') os_creds = openstack_tests.get_credentials( - os_env_file=CONST.__getattribute__('env_file'), + os_env_file=getattr(CONST, 'env_file'), proxy_settings_str=proxy_settings_str, ssh_proxy_cmd=ssh_proxy_cmd, overrides=creds_override) return os_creds |