Skip to content

Commit

Permalink
Fixed errors in 848101b
Browse files Browse the repository at this point in the history
  • Loading branch information
timgraham committed Oct 11, 2013
1 parent 8bfc7cc commit ad17d6a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/validators/tests.py
Expand Up @@ -145,9 +145,9 @@
(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),
Expand Down

0 comments on commit ad17d6a

Please sign in to comment.