Skip to content

Commit 72206a7

Browse files
committed
init: unit test fix
1 parent 84e3759 commit 72206a7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

ack_backend/tests/test_update_ack_file.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,8 @@ def test_update_ack_file(self):
103103
update_ack_file(
104104
file_key=MOCK_MESSAGE_DETAILS.file_key,
105105
message_id=MOCK_MESSAGE_DETAILS.message_id,
106-
supplier_queue=MOCK_MESSAGE_DETAILS.queue_name,
106+
supplier=MOCK_MESSAGE_DETAILS.supplier,
107+
vaccine_type=MOCK_MESSAGE_DETAILS.vaccine_type,
107108
created_at_formatted_string=MOCK_MESSAGE_DETAILS.created_at_formatted_string,
108109
ack_data_rows=test_case["input_rows"],
109110
)
@@ -124,7 +125,8 @@ def test_update_ack_file_existing(self):
124125
update_ack_file(
125126
file_key=MOCK_MESSAGE_DETAILS.file_key,
126127
message_id=MOCK_MESSAGE_DETAILS.message_id,
127-
supplier_queue=MOCK_MESSAGE_DETAILS.queue_name,
128+
supplier=MOCK_MESSAGE_DETAILS.supplier,
129+
vaccine_type=MOCK_MESSAGE_DETAILS.vaccine_type,
128130
created_at_formatted_string=MOCK_MESSAGE_DETAILS.created_at_formatted_string,
129131
ack_data_rows=ack_data_rows,
130132
)

0 commit comments

Comments
 (0)