summaryrefslogtreecommitdiff
path: root/tests/validators
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validators')
-rw-r--r--tests/validators/tests.py6
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),