diff options
author | Cedric Ollivier <ollivier.cedric@gmail.com> | 2017-03-29 12:53:16 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-03-29 12:53:16 +0000 |
commit | 62661e25ab10f1fea79b8c1e19c6d493b3e12b68 (patch) | |
tree | 3d323e864d895b70844a77f89ebe081267fde94d /functest/opnfv_tests/vnf | |
parent | fe60c2fbe2b3f8d7c4c6cbf7e11dd97a9598fb7e (diff) | |
parent | ba4a83e7a825117da70e7cde81e6a1836a13e069 (diff) |
Merge "rename FeatureBase to Feature"
Diffstat (limited to 'functest/opnfv_tests/vnf')
-rw-r--r-- | functest/opnfv_tests/vnf/rnc/parser.py | 2 | ||||
-rw-r--r-- | functest/opnfv_tests/vnf/router/vyos_vrouter.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/functest/opnfv_tests/vnf/rnc/parser.py b/functest/opnfv_tests/vnf/rnc/parser.py index 905d51e8..133145d7 100644 --- a/functest/opnfv_tests/vnf/rnc/parser.py +++ b/functest/opnfv_tests/vnf/rnc/parser.py @@ -18,7 +18,7 @@ import functest.core.feature as base -class Parser(base.FeatureBase): +class Parser(base.Feature): def __init__(self): super(Parser, self).__init__(project='parser', case='parser-basics', diff --git a/functest/opnfv_tests/vnf/router/vyos_vrouter.py b/functest/opnfv_tests/vnf/router/vyos_vrouter.py index 110c09b8..e188c3fb 100644 --- a/functest/opnfv_tests/vnf/router/vyos_vrouter.py +++ b/functest/opnfv_tests/vnf/router/vyos_vrouter.py @@ -13,7 +13,7 @@ import os RESULT_DETAILS_FILE = "test_result.json" -class VrouterVnf(base.FeatureBase): +class VrouterVnf(base.Feature): def __init__(self): super(VrouterVnf, self).__init__(project='functest', case='vyos_vrouter', |