Skip to content

Commit c497789

Browse files
committed
lint
1 parent e86bdce commit c497789

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_asyncio/test_connection.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -478,8 +478,8 @@ async def test_connection_garbage_collection(request):
478478

479479
with mock.patch.object(conn, "_reader"):
480480
with mock.patch.object(conn, "_writer") as a:
481-
# we cannot, in unittests, or from asyncio, reliably trigger garbage collection
482-
# so we must just invoke the handler
481+
# we cannot, in unittests, or from asyncio, reliably trigger
482+
# garbage collection so we must just invoke the handler
483483
with pytest.warns(ResourceWarning):
484484
conn.__del__()
485485
assert a.close.called

0 commit comments

Comments
 (0)