summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-09-10 18:38:28 -0400
committerTim Graham <timograham@gmail.com>2016-09-10 18:39:13 -0400
commit0368d63a78b07e794138a65216b91eadbb47fc2f (patch)
tree68fa3008f91d4810335879b5d090c3ed60c004a4
parent536db42cf01ebe0dd633b131c3dbfc0bf743064f (diff)
downloaddjango-0368d63a78b07e794138a65216b91eadbb47fc2f.tar.gz
Fixed indentation in previous commit.
-rw-r--r--tests/auth_tests/test_forms.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auth_tests/test_forms.py b/tests/auth_tests/test_forms.py
index 28a40db852..19f0f4521c 100644
--- a/tests/auth_tests/test_forms.py
+++ b/tests/auth_tests/test_forms.py
@@ -240,8 +240,8 @@ class UserCreationFormTest(TestDataMixin, TestCase):
{'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator'},
])
def test_password_help_text(self):
- form = UserCreationForm()
- self.assertEqual(
+ form = UserCreationForm()
+ self.assertEqual(
form.fields['password1'].help_text,
'<ul><li>Your password can&#39;t be too similar to your other personal information.</li></ul>'
)