Skip to content

Commit 0d082b3

Browse files
committed
Fix other failing test
1 parent 933e8a7 commit 0d082b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/smithy-core/tests/unit/aio/test_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ async def test_close_without_flush_deletes_buffered_data() -> None:
394394
# We weren't able to read data, which is what we want. But here we dig into
395395
# the internals to be sure that the buffer is clear and no data is haning
396396
# around.
397-
assert provider._data == [] # type: ignore
397+
assert len(provider._data) == 0 # type: ignore
398398

399399

400400
async def test_only_max_chunks_buffered() -> None:

0 commit comments

Comments
 (0)