Modify test scripts of F version and add instructions about it
[vfc/nfvo/lcm.git] / resources / testscripts / F-version / vnf / vnf_delete.py
index cd85ddf..7857878 100644 (file)
@@ -1,8 +1,10 @@
 import requests
 import sys
 
+from testscripts.const import MSB_BASE_URL
+
 id = sys.argv[1]
 
 requests.packages.urllib3.disable_warnings()
-resp = requests.delete('https://192.168.235.89:30283/api/vnfpkgm/v1/vnf_packages/' + id, verify=False)
+resp = requests.delete(MSB_BASE_URL + '/api/vnfpkgm/v1/vnf_packages/' + id, verify=False)
 print(resp.status_code)