File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments