mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Style fixes
This commit is contained in:
parent
eb2125d631
commit
2c28f7ee4b
3 changed files with 14 additions and 4 deletions
|
|
@ -209,10 +209,13 @@ class TestAiohttpSession:
|
|||
|
||||
async def test_stream_content_404(self, aresponses: ResponsesMockServer):
|
||||
aresponses.add(
|
||||
aresponses.ANY, aresponses.ANY, "get", aresponses.Response(
|
||||
aresponses.ANY,
|
||||
aresponses.ANY,
|
||||
"get",
|
||||
aresponses.Response(
|
||||
status=404,
|
||||
body=b"File not found",
|
||||
)
|
||||
),
|
||||
)
|
||||
session = AiohttpSession()
|
||||
stream = session.stream_content(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue