File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
services/director-v2/tests/unit/with_dbs Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -558,7 +558,7 @@ async def instrumentation_rabbit_client_parser(
558558) -> AsyncIterator [mock .AsyncMock ]:
559559 client = create_rabbitmq_client ("instrumentation_pytest_consumer" )
560560 mock = mocker .AsyncMock (return_value = True )
561- queue_name = await client .subscribe (
561+ queue_name , _ = await client .subscribe (
562562 InstrumentationRabbitMessage .get_channel_name (), mock
563563 )
564564 yield mock
@@ -571,7 +571,7 @@ async def resource_tracking_rabbit_client_parser(
571571) -> AsyncIterator [mock .AsyncMock ]:
572572 client = create_rabbitmq_client ("resource_tracking_pytest_consumer" )
573573 mock = mocker .AsyncMock (return_value = True )
574- queue_name = await client .subscribe (
574+ queue_name , _ = await client .subscribe (
575575 RabbitResourceTrackingBaseMessage .get_channel_name (), mock
576576 )
577577 yield mock
You can’t perform that action at this time.
0 commit comments