From: yangyan Date: Wed, 21 Aug 2019 01:49:22 +0000 (+0800) Subject: fix the path error of test X-Git-Tag: 1.3.7~54 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F03%2F94003%2F1;p=vfc%2Fnfvo%2Flcm.git fix the path error of test Change-Id: I022601f3347a60aa47b84668bad550f9559ca78c Issue-ID: VFC-1489 Signed-off-by: yangyan --- 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')