From 854973394549a45b9c16ac6fd19d7f6538e5dee7 Mon Sep 17 00:00:00 2001 From: "dmitry.kanev" Date: Sat, 20 Apr 2024 18:42:13 +0400 Subject: [PATCH] Add details to the asyncio connection error message --- tests/test_asyncio/test_connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_asyncio/test_connection.py b/tests/test_asyncio/test_connection.py index 6255ae7d6..69d6be599 100644 --- a/tests/test_asyncio/test_connection.py +++ b/tests/test_asyncio/test_connection.py @@ -505,7 +505,7 @@ async def test_connection_garbage_collection(request): ], ) async def test_connect_error_message(error, expected_message): - """Test that the _error_message function formats errors correctly""" + """Test that the _error_message function formats errors correctly.""" conn = Connection() error_message = conn._error_message(error) assert error_message == expected_message