From 015fad9060a8a6fb273a33b8e8457e504ed26131 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 5 Feb 2016 15:56:52 -0500 Subject: Fixed #26175 -- Removed SHA1 password hashes in tests. --- tests/auth_tests/test_validators.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/auth_tests/test_validators.py') diff --git a/tests/auth_tests/test_validators.py b/tests/auth_tests/test_validators.py index a9f47eac1f..5d758cd342 100644 --- a/tests/auth_tests/test_validators.py +++ b/tests/auth_tests/test_validators.py @@ -97,9 +97,9 @@ class MinimumLengthValidatorTest(TestCase): class UserAttributeSimilarityValidatorTest(TestCase): def test_validate(self): - user = User.objects.create( - username='testclient', first_name='Test', last_name='Client', email='testclient@example.com', - password='sha1$6efc0$f93efe9fd7542f25a7be94871ea45aa95de57161', + user = User.objects.create_user( + username='testclient', password='password', email='testclient@example.com', + first_name='Test', last_name='Client', ) expected_error = "The password is too similar to the %s." -- cgit v1.3