Skip to content

Commit 3d27d52

Browse files
committed
formatting
1 parent aecbf81 commit 3d27d52

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

backend/app/tests/conftest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
@pytest.fixture(autouse=True)
1212
def mock_rabbitmq():
1313
"""Mock RabbitMQ connections for all tests"""
14-
with patch('aio_pika.connect_robust') as mock_connect:
14+
with patch("aio_pika.connect_robust") as mock_connect:
1515
mock_channel = AsyncMock()
1616
mock_exchange = AsyncMock()
1717
mock_connection = AsyncMock()
@@ -23,6 +23,7 @@ def mock_rabbitmq():
2323

2424
yield mock_connect
2525

26+
2627
settings.MONGO_DATABASE = "clowder-tests"
2728
settings.elasticsearch_index = "clowder-tests"
2829

0 commit comments

Comments
 (0)