aboutsummaryrefslogtreecommitdiffstats
path: root/functest/opnfv_tests/features/domino.py
diff options
context:
space:
mode:
Diffstat (limited to 'functest/opnfv_tests/features/domino.py')
-rw-r--r--functest/opnfv_tests/features/domino.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/functest/opnfv_tests/features/domino.py b/functest/opnfv_tests/features/domino.py
index 1c620235c..629c8d54c 100644
--- a/functest/opnfv_tests/features/domino.py
+++ b/functest/opnfv_tests/features/domino.py
@@ -18,8 +18,7 @@ import functest.core.feature as base
class Domino(base.Feature):
- def __init__(self, case_name='domino-multinode'):
- super(Domino, self).__init__(project='domino',
- case_name=case_name,
- repo='dir_repo_domino')
+ def __init__(self, **kwargs):
+ kwargs["repo"] = 'dir_repo_domino'
+ super(Domino, self).__init__(**kwargs)
self.cmd = 'cd %s && ./tests/run_multinode.sh' % self.repo