Skip to content

Commit

Permalink
fix failing 'test_email_url_value' test
Browse files Browse the repository at this point in the history
See #332
  • Loading branch information
lilioid committed Mar 24, 2022
1 parent 12ffda4 commit 42ab54f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_values.py
Original file line number Diff line number Diff line change
Expand Up @@ -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://'):
Expand All @@ -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
Expand Down

0 comments on commit 42ab54f

Please sign in to comment.