summaryrefslogtreecommitdiff
path: root/tests/mail/tests.py
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2023-07-17 11:03:36 +0200
committerGitHub <noreply@github.com>2023-07-17 11:03:36 +0200
commitda2f8e8257d1bea4215381684ca4abfcee333c43 (patch)
tree22d50ec8b55d808967c4a5e86c21a3593d4a5ed6 /tests/mail/tests.py
parent0016a4299569a8f09ff24053ff2b8224f7fa4113 (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.py3
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):