Skip to content

Commit 2177b17

Browse files
committed
chore: Regen golden-record
1 parent e53eab5 commit 2177b17

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Diff for: end_to_end_tests/golden-record/my_test_api_client/api/tests/post_tests_json_body_string.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ def _get_kwargs(
2020
json_json_body = json_body
2121

2222
return {
23+
"method": "post",
2324
"url": url,
2425
"headers": headers,
2526
"cookies": cookies,
@@ -67,7 +68,7 @@ def sync_detailed(
6768
json_body=json_body,
6869
)
6970

70-
response = httpx.post(
71+
response = httpx.request(
7172
verify=client.verify_ssl,
7273
**kwargs,
7374
)
@@ -115,7 +116,7 @@ async def asyncio_detailed(
115116
)
116117

117118
async with httpx.AsyncClient(verify=client.verify_ssl) as _client:
118-
response = await _client.post(**kwargs)
119+
response = await _client.request(**kwargs)
119120

120121
return _build_response(response=response)
121122

0 commit comments

Comments
 (0)