-
Notifications
You must be signed in to change notification settings - Fork 369
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add omole as an enterprise reviewer. (#4450)
* Add omole as an enterprise reviewer. * updated tests
- Loading branch information
Showing
2 changed files
with
10 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,6 +44,7 @@ | |
'[email protected]', | ||
'[email protected]', | ||
'[email protected]', | ||
'[email protected]', | ||
] | ||
DEBUGGABILITY_APPROVERS = IN_NDB | ||
TESTING_APPROVERS = [ | ||
|
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 |
---|---|---|
|
@@ -400,11 +400,12 @@ def test_get_template_data__one_due_unassigned(self, mock_remaining_days): | |
with test_app.app_context(): | ||
actual = self.handler.get_template_data() | ||
|
||
expected_message = (f'3 email(s) sent or logged.\n' | ||
expected_message = (f'4 email(s) sent or logged.\n' | ||
'Recipients:\n' | ||
'[email protected]\n' | ||
'[email protected]\n' | ||
'[email protected]') | ||
'[email protected]\n' | ||
'[email protected]') | ||
expected = {'message': expected_message} | ||
self.assertEqual(actual, expected) | ||
|
||
|
@@ -437,11 +438,12 @@ def test_get_template_data__one_overdue_unassigned(self, mock_remaining_days): | |
with test_app.app_context(): | ||
actual = self.handler.get_template_data() | ||
|
||
expected_message = (f'3 email(s) sent or logged.\n' | ||
expected_message = (f'4 email(s) sent or logged.\n' | ||
'Recipients:\n' | ||
'[email protected]\n' | ||
'[email protected]\n' | ||
'[email protected]') | ||
'[email protected]\n' | ||
'[email protected]') | ||
expected = {'message': expected_message} | ||
self.assertEqual(actual, expected) | ||
|
||
|
@@ -457,12 +459,13 @@ def test_get_template_data__one_overdue_assigned(self, mock_remaining_days): | |
with test_app.app_context(): | ||
actual = self.handler.get_template_data() | ||
|
||
expected_message = (f'4 email(s) sent or logged.\n' | ||
expected_message = (f'5 email(s) sent or logged.\n' | ||
'Recipients:\n' | ||
'[email protected]\n' | ||
'[email protected]\n' | ||
'[email protected]\n' | ||
'[email protected]') | ||
'[email protected]\n' | ||
'[email protected]') | ||
expected = {'message': expected_message} | ||
self.assertEqual(actual, expected) | ||
|
||
|