mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Fixed #31548 -- Fixed URLValidator crash on non-strings.
This commit is contained in:
parent
bda6ade7b7
commit
ccb1cfb64e
2 changed files with 5 additions and 1 deletions
|
@ -222,6 +222,8 @@ TEST_DATA = [
|
|||
(URLValidator(EXTENDED_SCHEMES), 'git+ssh://git@github.com/example/hg-git.git', None),
|
||||
|
||||
(URLValidator(EXTENDED_SCHEMES), 'git://-invalid.com', ValidationError),
|
||||
(URLValidator(), None, ValidationError),
|
||||
(URLValidator(), 56, ValidationError),
|
||||
(URLValidator(), 'no_scheme', ValidationError),
|
||||
# Trailing newlines not accepted
|
||||
(URLValidator(), 'http://www.djangoproject.com/\n', ValidationError),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue