Modify test scripts of F version and add instructions about it
[vfc/nfvo/lcm.git] / resources / testscripts / F-version / vnf / vnf_get.py
index 107b7dd..df14bd7 100644 (file)
@@ -1,5 +1,7 @@
 import requests
 
+from testscripts.const import MSB_BASE_URL
+
 requests.packages.urllib3.disable_warnings()
-resp = requests.get('https://192.168.235.89:30283/api/vnfpkgm/v1/vnf_packages', verify=False)
+resp = requests.get(MSB_BASE_URL + '/api/vnfpkgm/v1/vnf_packages', verify=False)
 print(resp.status_code, resp.json())