Skip to content

Commit

Permalink
Made environment name value on calling be case-insensitive
Browse files Browse the repository at this point in the history
Removed reviewer information from pull_request_template.md
  • Loading branch information
seansteberisal committed Feb 1, 2024
1 parent 2ec453c commit 7b33da2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 18 deletions.
17 changes: 0 additions & 17 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion features/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7b33da2

Please sign in to comment.