diff options
author | Vijayendra Radhakrishna <vradhakrishna@mvista.com> | 2016-12-16 18:03:27 +0530 |
---|---|---|
committer | Vijayendra Radhakrishna <vradhakrishna@mvista.com> | 2016-12-16 20:16:27 +0530 |
commit | 8195133a6273f203a3e8dae85e755de23e40d5f4 (patch) | |
tree | 718cdc5e048bdfa883a9fa3cbd2b346f0631ae47 | |
parent | 6d0ae9c5d9a41b9cc55412bb7a6aca3b36ab6622 (diff) |
improper import of config class with recent change
- Recent change of sfc as installable module moved config class
- lib where import has not changed.
Change-Id: Ic38d21b63fb8e6189d00f8ecf89ff776a9d7eb51
Signed-off-by: Vijayendra Radhakrishna <vradhakrishna@mvista.com>
-rw-r--r-- | sfc/tests/functest/run_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfc/tests/functest/run_tests.py b/sfc/tests/functest/run_tests.py index e66e4c11..809f895a 100644 --- a/sfc/tests/functest/run_tests.py +++ b/sfc/tests/functest/run_tests.py @@ -9,7 +9,6 @@ # import argparse -import config as sfc_config import importlib import os import sys @@ -21,6 +20,7 @@ import functest.utils.functest_utils as ft_utils import opnfv.utils.ovs_logger as ovs_log import opnfv.utils.SSHUtils as ssh_utils import sfc.lib.utils as utils +import sfc.lib.config as sfc_config parser = argparse.ArgumentParser() |