mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Fixed errors in 848101bf17
This commit is contained in:
parent
8bfc7cc64c
commit
ad17d6a85f
1 changed files with 3 additions and 3 deletions
|
@ -145,9 +145,9 @@ TEST_DATA = (
|
|||
(URLValidator(), 'http://valid-----hyphens.com/', None),
|
||||
(URLValidator(), 'http://example.com?something=value', None),
|
||||
(URLValidator(), 'http://example.com/index.php?something=value&another=value2', None),
|
||||
(URLValidator(), 'https://example.com/', None)
|
||||
(URLValidator(), 'ftp://example.com/', None)
|
||||
(URLValidator(), 'ftps://example.com/', None)
|
||||
(URLValidator(), 'https://example.com/', None),
|
||||
(URLValidator(), 'ftp://example.com/', None),
|
||||
(URLValidator(), 'ftps://example.com/', None),
|
||||
|
||||
(URLValidator(), 'foo', ValidationError),
|
||||
(URLValidator(), 'http://', ValidationError),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue