mirror of
https://github.com/django/django.git
synced 2025-08-31 15:57:45 +00:00
Fixed #20631 -- Increased the default EmailField max_length to 254.
Thanks pmartin for the report.
This commit is contained in:
parent
1966054feb
commit
7fd55c3481
10 changed files with 46 additions and 17 deletions
|
@ -66,6 +66,9 @@ TEST_DATA = (
|
|||
(validate_email, '"\\\011"@here.com', None),
|
||||
(validate_email, '"\\\012"@here.com', ValidationError),
|
||||
(validate_email, 'trailingdot@shouldfail.com.', ValidationError),
|
||||
# Max length of domain name in email is 251 (see validator for calculation)
|
||||
(validate_email, 'a@%s.com' % ('a' * 251), None),
|
||||
(validate_email, 'a@%s.com' % ('a' * 252), ValidationError),
|
||||
|
||||
(validate_slug, 'slug-ok', None),
|
||||
(validate_slug, 'longer-slug-still-ok', None),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue