diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-07-17 11:03:36 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-17 11:03:36 +0200 |
| commit | da2f8e8257d1bea4215381684ca4abfcee333c43 (patch) | |
| tree | 22d50ec8b55d808967c4a5e86c21a3593d4a5ed6 /tests/mail/tests.py | |
| parent | 0016a4299569a8f09ff24053ff2b8224f7fa4113 (diff) | |
Refs #34118 -- Improved sanitize_address() error message for tuple with empty strings.
Diffstat (limited to 'tests/mail/tests.py')
| -rw-r--r-- | tests/mail/tests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/mail/tests.py b/tests/mail/tests.py index 54a136c1a9..848ee32e9f 100644 --- a/tests/mail/tests.py +++ b/tests/mail/tests.py @@ -1084,9 +1084,10 @@ class MailTests(HeadersCheckMixin, SimpleTestCase): "@", "to@", "@example.com", + ("", ""), ): with self.subTest(email_address=email_address): - with self.assertRaises(ValueError): + with self.assertRaisesMessage(ValueError, "Invalid address"): sanitize_address(email_address, encoding="utf-8") def test_sanitize_address_header_injection(self): |
