Skip to content

Commit 3b324c3

Browse files
committed
changed 'ims_data' to 'test_criteria_data'
1 parent 8333e8b commit 3b324c3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

python/idsse_common/test/test_rabbitmq_utils.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
# Example data objects
2626
CONN = Conn('localhost', '/', port=5672, username='user', password='password')
2727
RMQ_PARAMS = RabbitMqParams(
28-
Exch('ims_data', 'topic'),
29-
Queue('ims_data', '', True, False, True)
28+
Exch('test_criteria_exch', 'topic'),
29+
Queue('test_criteria_queue', '', True, False, True)
3030
)
3131

3232

@@ -106,8 +106,8 @@ def test_connection_params_works(monkeypatch: MonkeyPatch, mock_connection: Mock
106106
)
107107

108108
_channel.queue_bind.assert_called_once_with(
109-
RMQ_PARAMS.exchange.name,
110109
RMQ_PARAMS.queue.name,
110+
RMQ_PARAMS.exchange.name,
111111
RMQ_PARAMS.queue.route_key
112112
)
113113

@@ -178,7 +178,7 @@ def test_direct_reply_does_not_declare_queue(
178178
monkeypatch: MonkeyPatch, mock_connection: Mock
179179
):
180180
params = RabbitMqParams(
181-
Exch('ims_data', 'topic'),
181+
Exch('test_criteria_exch', 'topic'),
182182
Queue('amq.rabbitmq.reply-to', '', True, False, True)
183183
)
184184

0 commit comments

Comments
 (0)