diff options
author | Manuel Buil <mbuil@suse.com> | 2017-12-19 17:14:43 +0100 |
---|---|---|
committer | Brady Johnson <bjohnson@inocybe.com> | 2017-12-19 16:48:18 +0000 |
commit | 3d401e3c6797711b3216ac04bdbd250a626acd82 (patch) | |
tree | ed57e7f12fdd099068d376b627ac1c07a05098cf | |
parent | 759e0751465747acfb9cf840aaad7761ba1327dd (diff) |
Move to functest TestCase superclass
Due to this:
https://gerrit.opnfv.org/gerrit/#/c/49243/
We need to change the class
Change-Id: I17dc65fcfd3e7ce3f6ebe5ec5176e5d89ef2e0e2
Signed-off-by: Manuel Buil <mbuil@suse.com>
-rw-r--r-- | sfc/tests/functest/run_sfc_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfc/tests/functest/run_sfc_tests.py b/sfc/tests/functest/run_sfc_tests.py index 20d9193c..49bf6c20 100644 --- a/sfc/tests/functest/run_sfc_tests.py +++ b/sfc/tests/functest/run_sfc_tests.py @@ -29,7 +29,7 @@ logger = logging.getLogger(__name__) COMMON_CONFIG = sfc_config.CommonConfig() -class SfcFunctest(testcase.OSGCTestCase): +class SfcFunctest(testcase.TestCase): def __fetch_tackerc_file(self, controller_node): rc_file = os.path.join(COMMON_CONFIG.sfc_test_dir, 'tackerc') |