From 0a54eadc2f788fc282f5e292a0991630f55ca87b Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Tue, 5 Jul 2022 15:57:46 +0200 Subject: [PATCH 3/3] tests: add test on @ bad email (#62354) --- tests/test_validators.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_validators.py b/tests/test_validators.py index 73cb2e2c..c99ee383 100644 --- a/tests/test_validators.py +++ b/tests/test_validators.py @@ -71,6 +71,7 @@ class TestEmailValidator: 'a#b@nok.com', 'a&b@nok.com', 'a?b@nok.com', + '@', ], ) def test_bad_email(self, bad_email): -- 2.35.1