diff options
| author | Antoine Catton <acatton@fusionbox.com> | 2015-09-25 15:32:23 -0600 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-09-28 15:30:16 -0400 |
| commit | 53ccffdb8c8e47a4d4304df453d8c79a9be295ab (patch) | |
| tree | a91892e8fa32ce7045ae70f8f6ac008568b7d305 /tests/auth_tests | |
| parent | c14b6b52ff131db263bf06a02f903a73390975da (diff) | |
Refs #16860 -- Fixed password help text when there aren't any validators.
This avoids creating an empty list which is invalid HTML 4.
Diffstat (limited to 'tests/auth_tests')
| -rw-r--r-- | tests/auth_tests/test_validators.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auth_tests/test_validators.py b/tests/auth_tests/test_validators.py index e70feb727d..a9f47eac1f 100644 --- a/tests/auth_tests/test_validators.py +++ b/tests/auth_tests/test_validators.py @@ -68,6 +68,10 @@ class PasswordValidationTest(TestCase): self.assertEqual(help_text.count('<li>'), 2) self.assertIn('12 characters', help_text) + @override_settings(AUTH_PASSWORD_VALIDATORS=[]) + def test_empty_password_validator_help_text_html(self): + self.assertEqual(password_validators_help_text_html(), '') + class MinimumLengthValidatorTest(TestCase): def test_validate(self): |
