File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
python-packages/smithy-core/tests/unit/aio Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -296,7 +296,7 @@ async def test_provider_reads_initial_data() -> None:
296296 read_task = asyncio .create_task (drain_provider (provider , result ))
297297
298298 # Wait for the buffer to drain. At that point all the data should
299- # be read, but the read dask won't actually be complete yet
299+ # be read, but the read task won't actually be complete yet
300300 # because it's still waiting on future data.
301301 await provider .flush ()
302302 assert result == [b"foo" ]
@@ -320,7 +320,7 @@ async def test_provider_reads_written_data() -> None:
320320 await provider .write (b"foo" )
321321
322322 # Wait for the buffer to drain. At that point all the data should
323- # be read, but the read dask won't actually be complete yet
323+ # be read, but the read task won't actually be complete yet
324324 # because it's still waiting on future data.
325325 await provider .flush ()
326326 assert result == [b"foo" ]
You can’t perform that action at this time.
0 commit comments