We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b806235 commit 8f08096Copy full SHA for 8f08096
1 file changed
tests/test_multipart.py
@@ -383,7 +383,7 @@ async def test_decode_with_content_transfer_encoding_base64(self) -> None:
383
result = b""
384
while not obj.at_eof():
385
chunk = await obj.read_chunk(size=6)
386
- result += obj.decode(chunk)
+ result += await obj.decode(chunk)
387
assert b"Time to Relax!" == result
388
389
async def test_read_with_content_transfer_encoding_quoted_printable(self) -> None:
0 commit comments