Skip to content

Commit d243c9e

Browse files
committed
cleanup
1 parent f9eadb3 commit d243c9e

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

packages/pytest-simcore/src/pytest_simcore/rabbit_service.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# pylint: disable=redefined-outer-name
22
# pylint: disable=unused-argument
33
# pylint: disable=unused-variable
4+
# pylint: disable=protected-access
45

56
import asyncio
67
import logging
@@ -130,10 +131,3 @@ async def _creator(client_name: str, *, heartbeat: int = 60) -> RabbitMQRPCClien
130131
yield _creator
131132
# cleanup, properly close the clients
132133
await asyncio.gather(*(client.close() for client in created_clients))
133-
134-
135-
async def rabbitmq_client(create_rabbitmq_client):
136-
# NOTE: Legacy fixture
137-
# Use create_rabbitmq_client instead of rabbitmq_client
138-
# SEE docs/coding-conventions.md::CC4
139-
return create_rabbitmq_client

0 commit comments

Comments
 (0)