diff options
author | spisarski <s.pisarski@cablelabs.com> | 2017-03-22 16:04:25 -0600 |
---|---|---|
committer | Jose Lausuch <jose.lausuch@ericsson.com> | 2017-04-13 10:51:46 +0000 |
commit | 4f8235de0071502415da260ea967a65b9327476c (patch) | |
tree | e7a839b03d8c417a8996e303c9d76269a9d94130 /functest/opnfv_tests/openstack/snaps/smoke.py | |
parent | 888271575907898d80081e69b37f879091a636fc (diff) |
Updated method calls to SNAPS tests.
Due to the refactoring performed in gerrit patch
31435, the calls to the SNAPS tests needed to be
updated.
JIRA: SNAPS-23
Change-Id: I9069ea61b1d15b52a081501b03ae8bf73da10f29
Signed-off-by: spisarski <s.pisarski@cablelabs.com>
Diffstat (limited to 'functest/opnfv_tests/openstack/snaps/smoke.py')
-rw-r--r-- | functest/opnfv_tests/openstack/snaps/smoke.py | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/functest/opnfv_tests/openstack/snaps/smoke.py b/functest/opnfv_tests/openstack/snaps/smoke.py index ceead6bb..5a637f28 100644 --- a/functest/opnfv_tests/openstack/snaps/smoke.py +++ b/functest/opnfv_tests/openstack/snaps/smoke.py @@ -27,7 +27,6 @@ class SnapsSmoke(SnapsTestRunner): super(SnapsSmoke, self).__init__(**kwargs) self.suite = unittest.TestSuite() - use_fip = CONST.snaps_use_floating_ips # The snaps smoke test uses the same config as the # snaps_health_check suite, so reuse it here @@ -37,15 +36,15 @@ class SnapsSmoke(SnapsTestRunner): # Tests requiring floating IPs leverage files contained within the # SNAPS repository and are found relative to that path - if use_fip: + if self.use_fip: snaps_dir = CONST.dir_repo_snaps + '/snaps' os.chdir(snaps_dir) test_suite_builder.add_openstack_integration_tests( - self.suite, - CONST.openstack_creds, - self.ext_net_name, - use_keystone=CONST.snaps_use_keystone, + suite=self.suite, + os_creds=self.os_creds, + ext_net_name=self.ext_net_name, + use_keystone=self.use_keystone, flavor_metadata=self.flavor_metadata, image_metadata=image_custom_config, - use_floating_ips=use_fip) + use_floating_ips=self.use_fip) |