aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functest/odl-sfc/sfc.py
diff options
context:
space:
mode:
authorGeorge Paraskevopoulos <geopar@intracom-telecom.com>2016-12-13 16:05:28 +0200
committerGeorge Paraskevopoulos <geopar@intracom-telecom.com>2016-12-13 16:05:28 +0200
commit9455d897de5b4788fee1b9c820d8a09b3e6e8968 (patch)
treebde556d156df0fb1e4942cfbf38e7f0962f62265 /tests/functest/odl-sfc/sfc.py
parent8b09f0ad06e5ae941fc497754cc5778fae9018de (diff)
Use ovs_logger module from releng
JIRA: SFC-61 Releng is now installed as a python module and ovs_utils has been transfered there in "opnfv.utils.ovs_logger" module, so we should use that instead. ofctl_time_counter is still hosted here under utils.py as it's not generic enough to be moved in releng Change-Id: Ie721c95f20a7f515f7f2eb45b7f8edd0460a6ea8 Signed-off-by: George Paraskevopoulos <geopar@intracom-telecom.com>
Diffstat (limited to 'tests/functest/odl-sfc/sfc.py')
-rwxr-xr-xtests/functest/odl-sfc/sfc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/functest/odl-sfc/sfc.py b/tests/functest/odl-sfc/sfc.py
index 22301a28..36e6fa84 100755
--- a/tests/functest/odl-sfc/sfc.py
+++ b/tests/functest/odl-sfc/sfc.py
@@ -5,7 +5,7 @@ import functest.utils.functest_logger as ft_logger
import functest.utils.openstack_utils as os_utils
import functest.utils.openstack_tacker as os_tacker
import threading
-import ovs_utils
+import opnfv.utils.ovs_logger as ovs_log
import utils as test_utils
import config as sfc_config
from results import Results
@@ -70,7 +70,7 @@ def main():
compute_clients = test_utils.get_ssh_clients("compute",
COMMON_CONFIG.fuel_proxy)
- ovs_logger = ovs_utils.OVSLogger(
+ ovs_logger = ovs_log.OVSLogger(
os.path.join(COMMON_CONFIG.sfc_test_dir, 'ovs-logs'),
COMMON_CONFIG.functest_results_dir)