mirror of
https://github.com/httprunner/httprunner.git
synced 2026-06-05 07:49:37 +08:00
fix: missing list type for request body
This commit is contained in:
@@ -10,6 +10,7 @@
|
|||||||
|
|
||||||
- change: do not raise error if failed to get client/server address info
|
- change: do not raise error if failed to get client/server address info
|
||||||
- fix: path handling error when har2case har file and cwd != ProjectRootDir
|
- fix: path handling error when har2case har file and cwd != ProjectRootDir
|
||||||
|
- fix: missing list type for request body
|
||||||
|
|
||||||
## 3.0.13 (2020-06-17)
|
## 3.0.13 (2020-06-17)
|
||||||
|
|
||||||
|
|||||||
@@ -123,7 +123,7 @@ class RequestData(BaseModel):
|
|||||||
url: Url
|
url: Url
|
||||||
headers: Headers = {}
|
headers: Headers = {}
|
||||||
cookies: Cookies = {}
|
cookies: Cookies = {}
|
||||||
body: Union[Text, bytes, Dict, None] = {}
|
body: Union[Text, bytes, Dict, List, None] = {}
|
||||||
|
|
||||||
|
|
||||||
class ResponseData(BaseModel):
|
class ResponseData(BaseModel):
|
||||||
|
|||||||
Reference in New Issue
Block a user