-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from nationalarchives/rollbar-is-prod-notifica…
…tions Email notifications should trigger on correct spelling of ROLLBAR_ENV, 'prod'
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -207,7 +207,7 @@ def test_store_file_file_no_credentials(self, mock_print): | |
"EDITORIAL_UI_BASE_URL": "http://editor.url/", | ||
"NOTIFY_EDITORIAL_ADDRESS": "[email protected]", | ||
"NOTIFY_NEW_JUDGMENT_TEMPLATE_ID": "template-id", | ||
"ROLLBAR_ENV": "production", | ||
"ROLLBAR_ENV": "prod", | ||
}, | ||
clear=True, | ||
) | ||
|
@@ -261,7 +261,7 @@ def test_do_not_send_new_judgment_notification_on_staging(self, mock_print): | |
"EDITORIAL_UI_BASE_URL": "http://editor.url/", | ||
"NOTIFY_EDITORIAL_ADDRESS": "[email protected]", | ||
"NOTIFY_UPDATED_JUDGMENT_TEMPLATE_ID": "template-id", | ||
"ROLLBAR_ENV": "production", | ||
"ROLLBAR_ENV": "prod", | ||
}, | ||
clear=True, | ||
) | ||
|