-
Notifications
You must be signed in to change notification settings - Fork 18
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 #336 from alphagov/add-external-views-from-briefs
Add external views from briefs
- Loading branch information
Showing
3 changed files
with
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,4 @@ | |
import flask_featureflags # noqa | ||
|
||
|
||
__version__ = '28.4.0' | ||
__version__ = '28.5.0' |
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 |
---|---|---|
|
@@ -36,7 +36,7 @@ def test_correctly_calls_notify_client_for_buyer( | |
'buyer', | ||
'[email protected]', | ||
current_app.config['NOTIFY_TEMPLATES']['create_user_account'] | ||
) | ||
) | ||
|
||
notify_client_mock.send_email.assert_called_once_with( | ||
'[email protected]', | ||
|
@@ -75,7 +75,7 @@ def test_correctly_calls_notify_client_for_supplier( | |
'user': 'Digital Marketplace Team', | ||
'supplier': 'Digital Marketplace' | ||
} | ||
) | ||
) | ||
|
||
notify_client_mock.send_email.assert_called_once_with( | ||
'[email protected]', | ||
|
@@ -102,7 +102,7 @@ def test_abort_with_503_if_send_email_fails_with_EmailError(self, DMNotifyClient | |
'buyer', | ||
'[email protected]', | ||
current_app.config['NOTIFY_TEMPLATES']['create_user_account'] | ||
) | ||
) | ||
|
||
current_app.logger.error.assert_called_once_with( | ||
"{code}: Create user email for email_hash {email_hash} failed to send. Error: {error}", | ||
|