From 9e8a6bdf293d7c03512de297e90f3883f7af3fb2 Mon Sep 17 00:00:00 2001 From: Kevin Mai-Husan Chia Date: Sat, 31 Aug 2019 22:32:43 +0800 Subject: [PATCH] Update tests/conftest.py Co-Authored-By: NIC Lin --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 9101fa6..fd753be 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -26,7 +26,7 @@ async def hosts(num_hosts, is_host_secure): yield _hosts finally: # TODO: It's possible that `close` raises exceptions currently, - # due to the connection reset things. Though we are not so careful about that when + # due to the connection reset things. Though we don't care much about that when # cleaning up the tasks, it is probably better to handle the exceptions properly. await asyncio.gather( *[_host.close() for _host in _hosts], return_exceptions=True