Commit 57c0c9763cbd68c8923a823556cd102fbb450d3a

Authored by lixi
1 parent 860ea21b

1

testcase/hg/createBatch/test_createBatch.py
@@ -26,7 +26,8 @@ if d!=None : @@ -26,7 +26,8 @@ if d!=None :
26 for i in range(t): 26 for i in range(t):
27 body = d 27 body = d
28 print("创建订单,第{}次请求,请求body={}".format(i+1,body)) 28 print("创建订单,第{}次请求,请求body={}".format(i+1,body))
29 - re = hg.post(url = create.url, headers = create.header, json = body) 29 + print("请求url={},请求header={},请求body={}".format(create.url,create.header,create.body))
  30 + re = hg.post(url = create.url, headers = create.header, json = create.body)
30 print(re.json()) 31 print(re.json())
31 32
32 33