aboutsummaryrefslogtreecommitdiffstats
path: root/functest/opnfv_tests/openstack/snaps/snaps_test_runner.py
diff options
context:
space:
mode:
authorCedric Ollivier <ollivier.cedric@gmail.com>2017-04-05 08:27:59 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-04-05 08:27:59 +0000
commit881edc3942e42ccd9088ed9718600c90b0a04e20 (patch)
treeab8fa42929a8fabe4880f90584285467dc42714e /functest/opnfv_tests/openstack/snaps/snaps_test_runner.py
parent0cbe545a4ebda5b37b682b46d849198648a7efe1 (diff)
parentcc9ed6dfc7b5ae5ffc07288cdaf3f98c40252746 (diff)
Merge "Bugfix: Add case_name as constructor arg for snaps and rally"
Diffstat (limited to 'functest/opnfv_tests/openstack/snaps/snaps_test_runner.py')
-rw-r--r--functest/opnfv_tests/openstack/snaps/snaps_test_runner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/functest/opnfv_tests/openstack/snaps/snaps_test_runner.py b/functest/opnfv_tests/openstack/snaps/snaps_test_runner.py
index 9d723905..044a0bb0 100644
--- a/functest/opnfv_tests/openstack/snaps/snaps_test_runner.py
+++ b/functest/opnfv_tests/openstack/snaps/snaps_test_runner.py
@@ -19,8 +19,8 @@ class SnapsTestRunner(PyTestSuiteRunner):
creates a VM with a single port with an IPv4 address that is assigned by
DHCP. This test then validates the expected IP with the actual
"""
- def __init__(self):
- super(SnapsTestRunner, self).__init__()
+ def __init__(self, case_name=''):
+ super(SnapsTestRunner, self).__init__(case_name)
self.ext_net_name = snaps_utils.get_ext_net_name()
self.logger = ft_logger.Logger(self.project_name).getLogger()