Modify test scripts of F version and add instructions about it
[vfc/nfvo/lcm.git] / resources / testscripts / F-version / ns / ns_delete.py
index aa3eb2b..9638586 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/nsd/v1/ns_descriptors/' + id, verify=False)
+resp = requests.delete(MSB_BASE_URL + '/api/nsd/v1/ns_descriptors/' + id, verify=False)
 print(resp.status_code)