Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion helpers/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
4 changes: 2 additions & 2 deletions tests/release_tests/test_parallel_send_email.py
Original file line number Diff line number Diff line change
@@ -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
Comment thread
damientobin1 marked this conversation as resolved.
from helpers.api.apim_request import APIHelper
from helpers.aws.aws_client import AWSClient
from helpers.test_data.user_data import UserData
Expand All @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions tests/release_tests/test_parallel_send_sms.py
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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",
Expand Down