From 31b7d7e3aa2d0658db137c85506818683f3554c4 Mon Sep 17 00:00:00 2001 From: Sean Steberis <103416906+seansteberisal@users.noreply.github.com> Date: Fri, 2 Feb 2024 09:26:40 +0000 Subject: [PATCH] AEA-3713 (#55) ## Summary - Routine Change ### Details - Bug fix when selecting environment name --------- Co-authored-by: natasafrgk --- .github/pull_request_template.md | 17 ----------------- features/environment.py | 2 +- 2 files changed, 1 insertion(+), 18 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 4b00a00d..29dd27b9 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -11,20 +11,3 @@ ### Details Add any summary information of what is in the change. **Remove this line if you have nothing to add.** - -## Reviews Required - -**Check who should review this. Remove this line once this has been done** - -- [x] Dev -- [ ] Test -- [ ] Tech Author -- [ ] Product Owner - -## Review Checklist - -:information_source: This section is to be filled in by the **reviewer**. - -- [ ] I have reviewed the changes in this PR and they fill all or part of the acceptance criteria of the ticket, and the code is in a mergeable state. -- [ ] If there were infrastructure, operational, or build changes, I have made sure there is sufficient evidence that the changes will work. -- [ ] I have ensured the jira ticket has been updated with the github pull request link diff --git a/features/environment.py b/features/environment.py index ee8055e9..3fe185d9 100644 --- a/features/environment.py +++ b/features/environment.py @@ -25,7 +25,7 @@ def before_all(context): - env = context.config.userdata["env"] + env = context.config.userdata["env"].lower() context.fhir_base_url = select_base_url(env) + EPS_SUFFIX # This will need rework when the pack includes additional products to test