From 790fa04f4503dbf60123bf9414db131580f2c45a Mon Sep 17 00:00:00 2001 From: "jose.lausuch" Date: Tue, 26 Apr 2016 13:35:00 +0200 Subject: Move functest_utils and openstack_utils to directory /utils JIRA: FUNCTEST-226 Change-Id: I74d09f6322844b25ab45a02156317ae76ab40d8a Signed-off-by: jose.lausuch --- testcases/features/doctor.py | 2 +- testcases/features/promise.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'testcases/features') diff --git a/testcases/features/doctor.py b/testcases/features/doctor.py index 978750b2..e9ac3df9 100644 --- a/testcases/features/doctor.py +++ b/testcases/features/doctor.py @@ -18,7 +18,7 @@ import logging import time import yaml -import functest_utils +import functest.utils.functest_utils as functest_utils with open('/home/opnfv/functest/conf/config_functest.yaml') as f: functest_yaml = yaml.safe_load(f) diff --git a/testcases/features/promise.py b/testcases/features/promise.py index 794841fb..179ebca5 100644 --- a/testcases/features/promise.py +++ b/testcases/features/promise.py @@ -22,8 +22,8 @@ import glanceclient.client as glclient import novaclient.client as nvclient from neutronclient.v2_0 import client as ntclient -import functest_utils -import openstack_utils +import functest.utils.functest_utils as functest_utils +import functest.utils.openstack_utils as openstack_utils parser = argparse.ArgumentParser() -- cgit 1.2.3-korg