diff --git a/CHANGELOG.md b/CHANGELOG.md index 518941feb4..da5bde4916 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to - ✨(backend) add documents/all endpoint with descendants #1553 - ✅(export) add PDF regression tests #1762 +### Fixed + +- ✅(backend) reduce flakiness on backend test #1769 + ## [4.3.0] - 2026-01-05 ### Added diff --git a/src/backend/core/tests/test_api_users.py b/src/backend/core/tests/test_api_users.py index 926e731bd4..f2a30e9392 100644 --- a/src/backend/core/tests/test_api_users.py +++ b/src/backend/core/tests/test_api_users.py @@ -311,7 +311,7 @@ def test_api_users_list_query_short_queries(): """ Queries shorter than 5 characters should return an empty result set. """ - user = factories.UserFactory(email="paul@example.com") + user = factories.UserFactory(email="paul@example.com", full_name="Paul") client = APIClient() client.force_login(user)