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