mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-12 02:21:29 +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
|
||||
- fix: path handling error when har2case har file and cwd != ProjectRootDir
|
||||
- fix: missing list type for request body
|
||||
|
||||
## 3.0.13 (2020-06-17)
|
||||
|
||||
|
||||
@@ -123,7 +123,7 @@ class RequestData(BaseModel):
|
||||
url: Url
|
||||
headers: Headers = {}
|
||||
cookies: Cookies = {}
|
||||
body: Union[Text, bytes, Dict, None] = {}
|
||||
body: Union[Text, bytes, Dict, List, None] = {}
|
||||
|
||||
|
||||
class ResponseData(BaseModel):
|
||||
|
||||
Reference in New Issue
Block a user