Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 1 addition & 0 deletions helpers/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Comment thread
damientobin1 marked this conversation as resolved.
Outdated

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