Skip to content

Commit de5957c

Browse files
committed
Fix code formatting in test_asyncio/test_commands.py
1 parent 51d2f60 commit de5957c

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/test_asyncio/test_commands.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -550,10 +550,7 @@ async def test_client_setinfo_with_driver_info(self, r: redis.Redis):
550550
r2 = redis.asyncio.Redis(driver_info=info)
551551
await r2.ping()
552552
client_info = await r2.client_info()
553-
assert (
554-
client_info["lib-name"]
555-
== "redis-py(celery_v5.4.1)"
556-
)
553+
assert client_info["lib-name"] == "redis-py(celery_v5.4.1)"
557554
assert client_info["lib-ver"] == redis.__version__
558555
await r2.aclose()
559556
r3 = redis.asyncio.Redis(lib_name=None, lib_version=None)

0 commit comments

Comments
 (0)