diff --git a/helpers/constants.py b/helpers/constants.py index 0f10214..6bc2f08 100644 --- a/helpers/constants.py +++ b/helpers/constants.py @@ -27,7 +27,8 @@ 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_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", 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",