From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 6 Nov 2025 23:55:37 +0000 (-0800) Subject: Lol, password validation really does work X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fheads%2Ffeature-profile-pw;p=thirdparty%2Fpaperless-ngx.git Lol, password validation really does work --- diff --git a/src/documents/tests/test_api_permissions.py b/src/documents/tests/test_api_permissions.py index 8ffce1f95..bc81dabe9 100644 --- a/src/documents/tests/test_api_permissions.py +++ b/src/documents/tests/test_api_permissions.py @@ -648,7 +648,7 @@ class TestApiUser(DirectoriesMixin, APITestCase): user1 = { "username": "testuser", - "password": "test", + "password": "areallysupersecretpassword235", "first_name": "Test", "last_name": "User", } @@ -730,7 +730,7 @@ class TestApiUser(DirectoriesMixin, APITestCase): f"{self.ENDPOINT}{user1.pk}/", data={ "first_name": "Updated Name 2", - "password": "123xyz", + "password": "newreallystrongpassword456", }, )