aboutsummaryrefslogtreecommitdiffstats
path: root/resources/testscripts/F-version/vnf/vnf_create.py
diff options
context:
space:
mode:
Diffstat (limited to 'resources/testscripts/F-version/vnf/vnf_create.py')
-rw-r--r--resources/testscripts/F-version/vnf/vnf_create.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/resources/testscripts/F-version/vnf/vnf_create.py b/resources/testscripts/F-version/vnf/vnf_create.py
index 1bc9e391..537aa3b6 100644
--- a/resources/testscripts/F-version/vnf/vnf_create.py
+++ b/resources/testscripts/F-version/vnf/vnf_create.py
@@ -1,7 +1,9 @@
import json
import httplib2
-full_url = 'https://192.168.235.89:30283/api/vnfpkgm/v1/vnf_packages'
+from testscripts.const import MSB_BASE_URL
+
+full_url = MSB_BASE_URL + '/api/vnfpkgm/v1/vnf_packages'
ud_data = {'userDefinedData': {"key2": "value2"}}
headers = {'content-type': 'application/json', 'accept': 'application/json'}
ca_certs = None