1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-10 01:25:34 +00:00

Fix aiohttp tests to include content type when parsing response to json

This commit is contained in:
Luiz Menezes
2018-05-07 09:55:12 -03:00
parent 689d68a0a2
commit cd864b5eca
2 changed files with 16 additions and 10 deletions

View File

@@ -1,8 +1,8 @@
import aiohttp
async def aiohttp_request(loop, method, url, output='text', encoding='utf-8', **kwargs): # NOQA: E999
async with aiohttp.ClientSession(loop=loop) as session: # NOQA: E999
async def aiohttp_request(loop, method, url, output='text', encoding='utf-8', headers=None, **kwargs): # NOQA: E999
async with aiohttp.ClientSession(loop=loop, headers=headers or {}) as session: # NOQA: E999
async with session.request(method, url, **kwargs) as response: # NOQA: E999
if output == 'text':
content = await response.text() # NOQA: E999