Commit 57c0c9763cbd68c8923a823556cd102fbb450d3a
1 parent
860ea21b
1
Showing
1 changed file
with
2 additions
and
1 deletions
testcase/hg/createBatch/test_createBatch.py
... | ... | @@ -26,7 +26,8 @@ if d!=None : |
26 | 26 | for i in range(t): |
27 | 27 | body = d |
28 | 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 | 31 | print(re.json()) |
31 | 32 | |
32 | 33 | ... | ... |