Skip to content

Commit fa38892

Browse files
committed
Codestyle fixes
1 parent c403a9f commit fa38892

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/test_asyncio/test_sentinel.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -272,19 +272,19 @@ async def test_repr_correctly_represents_connection_object(sentinel):
272272
connection = await pool.get_connection("PING")
273273

274274
assert (
275-
str(connection)
276-
== "<redis.asyncio.sentinel.SentinelManagedConnection,host=127.0.0.1,port=6379)>" # noqa: E501
275+
str(connection)
276+
== "<redis.asyncio.sentinel.SentinelManagedConnection,host=127.0.0.1,port=6379)>" # noqa: E501
277277
)
278278
assert connection.connection_pool == pool
279279
await pool.release(connection)
280280

281281
del pool
282282

283283
assert (
284-
str(connection)
285-
== "<redis.asyncio.sentinel.SentinelManagedConnection,host=127.0.0.1,port=6379)>" # noqa: E501
284+
str(connection)
285+
== "<redis.asyncio.sentinel.SentinelManagedConnection,host=127.0.0.1,port=6379)>" # noqa: E501
286286
)
287287
with pytest.raises(
288-
ReferenceError, match="weakly-referenced object no longer exists"
288+
ReferenceError, match="weakly-referenced object no longer exists"
289289
):
290290
assert connection.connection_pool

0 commit comments

Comments
 (0)