1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-09 01:03:24 +00:00

ClientResponse.release isn't a coroutine

Therefore it should not be one in the MockClientResponse class.

d0af887e31/aiohttp/client_reqrep.py (L832)
This commit is contained in:
Stefan Tjarks
2018-09-26 00:30:11 -07:00
parent e42746fa88
commit ffc4dca502

View File

@@ -34,7 +34,7 @@ class MockClientResponse(ClientResponse):
async def read(self): async def read(self):
return self._body return self._body
async def release(self): def release(self):
pass pass