Skip to content

Commit 21471a7

Browse files
remove routing plan id
1 parent ff71a88 commit 21471a7

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

manage_breast_screening/notifications/tests/end_to_end/test_get_from_mesh_and_send_message_batch.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import uuid
21
from datetime import datetime
32
from unittest.mock import patch
43

@@ -53,8 +52,7 @@ def test_get_from_mesh_and_send_message_batch(self, mock_jwt_encode):
5352
today_dirname = datetime.today().strftime("%Y-%m-%d")
5453
CreateAppointmentsCommand().handle(**{"date_str": today_dirname})
5554

56-
routing_plan = str(uuid.uuid4())
5755
send_message_batch = SendMessageBatchCommand()
58-
send_message_batch.handle(**{"routing_plan_id": routing_plan})
56+
send_message_batch.handle()
5957

6058
# do we want to perform the failed message batch command here? or save that for another test?

0 commit comments

Comments
 (0)