Modify test scripts of F version and add instructions about it
[vfc/nfvo/lcm.git] / resources / testscripts / F-version / ns_instance / get_job_id.py
index 4fbf7c9..3ed9991 100644 (file)
@@ -1,9 +1,11 @@
 import requests
 import sys
 
+from testscripts.const import MSB_BASE_URL
+
 requests.packages.urllib3.disable_warnings()
 jobId = '1'
 if len(sys.argv) > 1:
     jobId = sys.argv[1]
-resp = requests.get('https://192.168.235.89:30283/api/nslcm/v1/jobs/%s' % jobId, verify=False)
+resp = requests.get(MSB_BASE_URL + '/api/nslcm/v1/jobs/%s' % jobId, verify=False)
 print(resp.status_code, resp.json())