Skip to content

Commit

Permalink
changed 'ims_data' to 'test_criteria_data'
Browse files Browse the repository at this point in the history
  • Loading branch information
Geary-Layne committed Oct 30, 2024
1 parent 8333e8b commit 3b324c3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions python/idsse_common/test/test_rabbitmq_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
# Example data objects
CONN = Conn('localhost', '/', port=5672, username='user', password='password')
RMQ_PARAMS = RabbitMqParams(
Exch('ims_data', 'topic'),
Queue('ims_data', '', True, False, True)
Exch('test_criteria_exch', 'topic'),
Queue('test_criteria_queue', '', True, False, True)
)


Expand Down Expand Up @@ -106,8 +106,8 @@ def test_connection_params_works(monkeypatch: MonkeyPatch, mock_connection: Mock
)

_channel.queue_bind.assert_called_once_with(
RMQ_PARAMS.exchange.name,
RMQ_PARAMS.queue.name,
RMQ_PARAMS.exchange.name,
RMQ_PARAMS.queue.route_key
)

Expand Down Expand Up @@ -178,7 +178,7 @@ def test_direct_reply_does_not_declare_queue(
monkeypatch: MonkeyPatch, mock_connection: Mock
):
params = RabbitMqParams(
Exch('ims_data', 'topic'),
Exch('test_criteria_exch', 'topic'),
Queue('amq.rabbitmq.reply-to', '', True, False, True)
)

Expand Down

0 comments on commit 3b324c3

Please sign in to comment.