Skip to content

Commit 004e6f3

Browse files
committed
Fixed broken tests due to changing from passing args to kwargs
1 parent f57a762 commit 004e6f3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/workflows/clem/test_process_raw_lifs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def test_zocalo_cluster_request(
7070

7171
# Check that it sends the expected recipe
7272
mock_transport.send.assert_called_once_with(
73-
"processing_recipe",
74-
sent_recipe,
73+
queue="processing_recipe",
74+
message=sent_recipe,
7575
new_connection=True,
7676
)

tests/workflows/clem/test_process_raw_tiffs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def test_zocalo_cluster_request(
9797

9898
# Check that it sends the expected recipe
9999
mock_transport.send.assert_called_once_with(
100-
"processing_recipe",
101-
sent_recipe,
100+
queue="processing_recipe",
101+
message=sent_recipe,
102102
new_connection=True,
103103
)

0 commit comments

Comments
 (0)