Skip to content

Commit d570363

Browse files
Fix typos in comments
Co-authored-by: Nate Prewitt <[email protected]>
1 parent 30b6fac commit d570363

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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"]

0 commit comments

Comments
 (0)