diff options
author | jose.lausuch <jose.lausuch@ericsson.com> | 2016-04-26 13:35:00 +0200 |
---|---|---|
committer | jose.lausuch <jose.lausuch@ericsson.com> | 2016-04-26 13:35:00 +0200 |
commit | 790fa04f4503dbf60123bf9414db131580f2c45a (patch) | |
tree | e595259fd9e7845056b4da12ea1b21cd31fe2687 /testcases/features | |
parent | db6a725bef90373462a0a69ffe527b61f7a5eaee (diff) |
Move functest_utils and openstack_utils to directory /utils
JIRA: FUNCTEST-226
Change-Id: I74d09f6322844b25ab45a02156317ae76ab40d8a
Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
Diffstat (limited to 'testcases/features')
-rw-r--r-- | testcases/features/doctor.py | 2 | ||||
-rw-r--r-- | testcases/features/promise.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/testcases/features/doctor.py b/testcases/features/doctor.py index 978750b2d..e9ac3df9f 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 794841fbf..179ebca55 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() |