Skip to content

Commit 8f08096

Browse files
Update test_multipart.py
1 parent b806235 commit 8f08096

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_multipart.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ async def test_decode_with_content_transfer_encoding_base64(self) -> None:
383383
result = b""
384384
while not obj.at_eof():
385385
chunk = await obj.read_chunk(size=6)
386-
result += obj.decode(chunk)
386+
result += await obj.decode(chunk)
387387
assert b"Time to Relax!" == result
388388

389389
async def test_read_with_content_transfer_encoding_quoted_printable(self) -> None:

0 commit comments

Comments
 (0)