diff options
author | Cedric Ollivier <ollivier.cedric@gmail.com> | 2017-04-05 08:27:59 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-04-05 08:27:59 +0000 |
commit | 881edc3942e42ccd9088ed9718600c90b0a04e20 (patch) | |
tree | ab8fa42929a8fabe4880f90584285467dc42714e /functest/opnfv_tests/openstack/snaps/connection_check.py | |
parent | 0cbe545a4ebda5b37b682b46d849198648a7efe1 (diff) | |
parent | cc9ed6dfc7b5ae5ffc07288cdaf3f98c40252746 (diff) |
Merge "Bugfix: Add case_name as constructor arg for snaps and rally"
Diffstat (limited to 'functest/opnfv_tests/openstack/snaps/connection_check.py')
-rw-r--r-- | functest/opnfv_tests/openstack/snaps/connection_check.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/functest/opnfv_tests/openstack/snaps/connection_check.py b/functest/opnfv_tests/openstack/snaps/connection_check.py index 0637bcfb..57b74d4c 100644 --- a/functest/opnfv_tests/openstack/snaps/connection_check.py +++ b/functest/opnfv_tests/openstack/snaps/connection_check.py @@ -20,11 +20,10 @@ class ConnectionCheck(SnapsTestRunner): that simply obtain the different OpenStack clients and may perform simple queries """ - def __init__(self): - super(ConnectionCheck, self).__init__() + def __init__(self, case_name="connection_check"): + super(ConnectionCheck, self).__init__(case_name) self.suite = unittest.TestSuite() - self.case_name = "connection_check" test_suite_builder.add_openstack_client_tests( self.suite, |