You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/test_syntax.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -330,9 +330,9 @@ def test_domain_literal():
330
330
('me@xn--0.tld', 'The part after the @-sign is not valid IDNA (Invalid A-label).'),
331
331
('me@yy--0.tld', 'An email address cannot have two letters followed by two dashes immediately after the @-sign or after a period, except Punycode.'),
332
332
('me@yy--0.tld', 'An email address cannot have two letters followed by two dashes immediately after the @-sign or after a period, except Punycode.'),
333
-
('me@[127.0.0.1]', 'A bracketed IPv4 address after the @-sign is not allowed here.'),
333
+
('me@[127.0.0.1]', 'A bracketed IP address after the @-sign is not allowed here.'),
334
334
('me@[127.0.0.999]', 'The address in brackets after the @-sign is not valid: It is not an IPv4 address (Octet 999 (> 255) not permitted in \'127.0.0.999\') or is missing an address literal tag.'),
335
-
('me@[IPv6:::1]', 'A bracketed IPv6 address after the @-sign is not allowed here.'),
335
+
('me@[IPv6:::1]', 'A bracketed IP address after the @-sign is not allowed here.'),
336
336
('me@[IPv6:::G]', 'The IPv6 address in brackets after the @-sign is not valid (Only hex digits permitted in \'G\' in \'::G\').'),
337
337
('me@[tag:text]', 'The part after the @-sign contains an invalid address literal tag in brackets.'),
338
338
('me@[untaggedtext]', 'The part after the @-sign in brackets is not an IPv4 address and has no address literal tag.'),
0 commit comments