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.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/functest/opnfv_tests/features/copper.py b/functest/opnfv_tests/features/copper.py
index 5b88a4995..2c5459fc4 100644
--- a/functest/opnfv_tests/features/copper.py
+++ b/functest/opnfv_tests/features/copper.py
@@ -15,11 +15,11 @@
# limitations under the License.
#
import functest.core.feature as base
+from functest.utils.constants import CONST
-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')
- self.cmd = 'cd %s/tests && bash run.sh && cd -' % self.repo
+class Copper(base.BashFeature):
+ def __init__(self, **kwargs):
+ repo = CONST.__getattribute__('dir_repo_copper')
+ kwargs["cmd"] = 'cd %s/tests && bash run.sh && cd -' % repo
+ super(Copper, self).__init__(**kwargs)