From 8a3a3a60cc7a1fc12531467f86df20ab1c9e3219 Mon Sep 17 00:00:00 2001 From: damientobin1 Date: Fri, 10 Apr 2026 15:27:36 +0100 Subject: [PATCH 1/2] CCM-14195: Updating tests --- helpers/constants.py | 1 + tests/release_tests/test_parallel_send_email.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/helpers/constants.py b/helpers/constants.py index 0f10214..f3c29c4 100644 --- a/helpers/constants.py +++ b/helpers/constants.py @@ -28,6 +28,7 @@ def get_client() -> str: MESH_ROUTING_CONFIGURATION_ALL_CHANNELS_CASCADE="1962c467-0000-0000-0000-3fa5cee00391" API_ROUTING_CONFIGURATION_ALL_CHANNELS_CASCADE="1962c467-0000-0000-0000-3fa5cee00392" PARALLEL_SEND_ROUTING_CONFIGURATION="1962c467-0000-0000-0000-3fa5cee00394" +PARALLEL_SEND_ROUTING_CONFIGURATION_EMAIL="1962c467-0000-0000-0000-3fa5cee00372" PATH_TO_EVIDENCE = "tests/evidence" diff --git a/tests/release_tests/test_parallel_send_email.py b/tests/release_tests/test_parallel_send_email.py index 6f1ce45..23c7b64 100644 --- a/tests/release_tests/test_parallel_send_email.py +++ b/tests/release_tests/test_parallel_send_email.py @@ -1,5 +1,5 @@ import uuid -from helpers.constants import NHS_NUMBER_NHSAPP, PARALLEL_SEND_ROUTING_CONFIGURATION +from helpers.constants import NHS_NUMBER_NHSAPP, PARALLEL_SEND_ROUTING_CONFIGURATION_EMAIL from helpers.api.apim_request import APIHelper from helpers.aws.aws_client import AWSClient from helpers.test_data.user_data import UserData @@ -12,7 +12,7 @@ def test_parallel_send(api_client): user = [ UserData( - routing_plan_id=PARALLEL_SEND_ROUTING_CONFIGURATION, + routing_plan_id=PARALLEL_SEND_ROUTING_CONFIGURATION_EMAIL, nhs_number = NHS_NUMBER_NHSAPP, # communication_type and supplier are used in enrich test data for GUKN requests communication_type = "EMAIL", From 8412b7c2ef69d81c8de2f52891804f4f8cf1be50 Mon Sep 17 00:00:00 2001 From: damientobin1 Date: Fri, 10 Apr 2026 15:38:03 +0100 Subject: [PATCH 2/2] CCM-14195: Updating tests --- helpers/constants.py | 2 +- tests/release_tests/test_parallel_send_sms.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/helpers/constants.py b/helpers/constants.py index f3c29c4..6bc2f08 100644 --- a/helpers/constants.py +++ b/helpers/constants.py @@ -27,7 +27,7 @@ def get_client() -> str: GLOBAL_ROUTING_CONFIGURATION_NHSAPP_EMAIL="00000000-0000-0000-0000-000000000004" MESH_ROUTING_CONFIGURATION_ALL_CHANNELS_CASCADE="1962c467-0000-0000-0000-3fa5cee00391" API_ROUTING_CONFIGURATION_ALL_CHANNELS_CASCADE="1962c467-0000-0000-0000-3fa5cee00392" -PARALLEL_SEND_ROUTING_CONFIGURATION="1962c467-0000-0000-0000-3fa5cee00394" +PARALLEL_SEND_ROUTING_CONFIGURATION_SMS="1962c467-0000-0000-0000-3fa5cee00394" PARALLEL_SEND_ROUTING_CONFIGURATION_EMAIL="1962c467-0000-0000-0000-3fa5cee00372" PATH_TO_EVIDENCE = "tests/evidence" diff --git a/tests/release_tests/test_parallel_send_sms.py b/tests/release_tests/test_parallel_send_sms.py index 2035118..65c52b0 100644 --- a/tests/release_tests/test_parallel_send_sms.py +++ b/tests/release_tests/test_parallel_send_sms.py @@ -1,5 +1,5 @@ import uuid -from helpers.constants import NHS_NUMBER_NHSAPP, PARALLEL_SEND_ROUTING_CONFIGURATION +from helpers.constants import NHS_NUMBER_NHSAPP, PARALLEL_SEND_ROUTING_CONFIGURATION_SMS from helpers.api.apim_request import APIHelper from helpers.aws.aws_client import AWSClient from helpers.test_data.user_data import UserData @@ -12,7 +12,7 @@ def test_parallel_send(api_client): user = [ UserData( - routing_plan_id=PARALLEL_SEND_ROUTING_CONFIGURATION, + routing_plan_id=PARALLEL_SEND_ROUTING_CONFIGURATION_SMS, nhs_number = NHS_NUMBER_NHSAPP, # communication_type and supplier are used in enrich test data for GUKN requests communication_type = "SMS",