-
-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix failing 'test_email_url_value' test
See #332
- Loading branch information
Showing
1 changed file
with
2 additions
and
0 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 |
---|---|---|
|
@@ -425,6 +425,7 @@ def test_email_url_value(self): | |
'EMAIL_HOST_PASSWORD': 'password', | ||
'EMAIL_HOST_USER': '[email protected]', | ||
'EMAIL_PORT': 587, | ||
'EMAIL_TIMEOUT': None, | ||
'EMAIL_USE_SSL': False, | ||
'EMAIL_USE_TLS': True}) | ||
with env(EMAIL_URL='console://'): | ||
|
@@ -435,6 +436,7 @@ def test_email_url_value(self): | |
'EMAIL_HOST_PASSWORD': None, | ||
'EMAIL_HOST_USER': None, | ||
'EMAIL_PORT': None, | ||
'EMAIL_TIMEOUT': None, | ||
'EMAIL_USE_SSL': False, | ||
'EMAIL_USE_TLS': False}) | ||
with env(EMAIL_URL='smtps://[email protected]:[email protected]:wrong'): # noqa: E501 | ||
|