aboutsummaryrefslogtreecommitdiffstats
path: root/functest/opnfv_tests/openstack/snaps/connection_check.py
diff options
context:
space:
mode:
authorLinda Wang <wangwulin@huawei.com>2017-04-05 02:08:54 +0000
committerLinda Wang <wangwulin@huawei.com>2017-04-05 02:34:49 +0000
commitcc9ed6dfc7b5ae5ffc07288cdaf3f98c40252746 (patch)
tree835137c373900e962a588b5ec39ed8cf629d7540 /functest/opnfv_tests/openstack/snaps/connection_check.py
parentdb9767d6871b3601265b46645d2ff7656f3a0bb4 (diff)
Bugfix: Add case_name as constructor arg for snaps and rally
When running healthcheck tier and rally, it complains " __init__() got an unexpected keyword argument 'case_name'" Change-Id: I078094921f08b457b88beabee60eabf40b657411 Signed-off-by: Linda Wang <wangwulin@huawei.com>
Diffstat (limited to 'functest/opnfv_tests/openstack/snaps/connection_check.py')
-rw-r--r--functest/opnfv_tests/openstack/snaps/connection_check.py5
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,