mirror of
https://github.com/django/django.git
synced 2024-12-22 17:16:24 +00:00
Fixed errors in 848101bf17
This commit is contained in:
parent
8bfc7cc64c
commit
ad17d6a85f
@ -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…
Reference in New Issue
Block a user