aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryangyan <yangyanyj@chinamobile.com>2019-08-21 09:49:22 +0800
committeryangyan <yangyanyj@chinamobile.com>2019-08-21 09:49:30 +0800
commit4103c7b8245c2de4379a7663798a76611a9ec184 (patch)
tree4eb7fa4012262c94d1850daa3f1ceb8e44b283f3
parent7ed98081ac0b9b07e08eacf129425d8cca8a4b05 (diff)
fix the path error of test
Change-Id: I022601f3347a60aa47b84668bad550f9559ca78c Issue-ID: VFC-1489 Signed-off-by: yangyan <yangyanyj@chinamobile.com>
-rw-r--r--lcm/ns/tests/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lcm/ns/tests/__init__.py b/lcm/ns/tests/__init__.py
index 5541c3b7..faa78774 100644
--- a/lcm/ns/tests/__init__.py
+++ b/lcm/ns/tests/__init__.py
@@ -18,7 +18,7 @@ from lcm.pub.utils import fileutil
cur_path = os.path.dirname(os.path.abspath(__file__))
CREATE_NS_DICT = fileutil.read_json_file(cur_path + '/data/create_ns.json')
-NS_INFO_AAI_DICT = fileutil.read_json_file(cur_path + '/data/ns_info_aai.json')
+NS_INFO_AAI_DICT = fileutil.read_json_file(cur_path + '/data/ns_info_from_aai.json')
VNFD_MODEL_DICT = fileutil.read_json_file(cur_path + '/data/vnfd_model.json')
HEAL_NS_DICT = fileutil.read_json_file(cur_path + '/data/heal_ns.json')
HEAL_VNF_DICT = fileutil.read_json_file(cur_path + '/data/heal_vnf.json')