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