diff options
| author | Tim Graham <timograham@gmail.com> | 2013-10-11 17:58:07 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-10-11 17:58:07 -0400 |
| commit | ad17d6a85fb75845b8a075e2617829834a9d1ffa (patch) | |
| tree | 9eb0f585a2a7b1975223c3e7774bf70ebd3469bc /tests/validators | |
| parent | 8bfc7cc64c4b45ccf9ad69564a5abd6b8105e28f (diff) | |
Fixed errors in 848101bf1736d1c01eb86968e85a14c7466bb376
Diffstat (limited to 'tests/validators')
| -rw-r--r-- | tests/validators/tests.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/validators/tests.py b/tests/validators/tests.py index 0beae52a83..121d59803c 100644 --- a/tests/validators/tests.py +++ b/tests/validators/tests.py @@ -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), |
