diff options
author | Jose Lausuch <jose.lausuch@ericsson.com> | 2017-05-02 14:29:51 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-05-02 14:29:51 +0000 |
commit | 9573bcec95357da8ae07259206fb93919023003d (patch) | |
tree | 2b581f2b96f9425a372a518c531389efb86b60a7 /functest/opnfv_tests/openstack/snaps/health_check.py | |
parent | 35473374d1eba4814b8344d094e62210ef17d9b1 (diff) | |
parent | 8ed5f05aad03b42d8b1a5a1cab5344a0048be3f7 (diff) |
Merge "Fix pylint warnings in snaps"
Diffstat (limited to 'functest/opnfv_tests/openstack/snaps/health_check.py')
-rw-r--r-- | functest/opnfv_tests/openstack/snaps/health_check.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/functest/opnfv_tests/openstack/snaps/health_check.py b/functest/opnfv_tests/openstack/snaps/health_check.py index 44e3b876..c057eb2b 100644 --- a/functest/opnfv_tests/openstack/snaps/health_check.py +++ b/functest/opnfv_tests/openstack/snaps/health_check.py @@ -30,8 +30,7 @@ class HealthCheck(SnapsTestRunner): image_custom_config = None if hasattr(CONST, 'snaps_health_check'): - image_custom_config = CONST.snaps_health_check - + image_custom_config = CONST.__getattribute__('snaps_health_check') self.suite.addTest( OSIntegrationTestCase.parameterize( SimpleHealthCheck, os_creds=self.os_creds, |