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/connection_check.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/connection_check.py')
-rw-r--r-- | functest/opnfv_tests/openstack/snaps/connection_check.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/functest/opnfv_tests/openstack/snaps/connection_check.py b/functest/opnfv_tests/openstack/snaps/connection_check.py index 0607beb3..f2753aea 100644 --- a/functest/opnfv_tests/openstack/snaps/connection_check.py +++ b/functest/opnfv_tests/openstack/snaps/connection_check.py @@ -11,7 +11,6 @@ from snaps import test_suite_builder from functest.opnfv_tests.openstack.snaps.snaps_test_runner import \ SnapsTestRunner -from functest.utils.constants import CONST class ConnectionCheck(SnapsTestRunner): @@ -28,7 +27,7 @@ class ConnectionCheck(SnapsTestRunner): self.suite = unittest.TestSuite() test_suite_builder.add_openstack_client_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) |