Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/backend/core/tests/test_api_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]")
user = factories.UserFactory(email="[email protected]", full_name="Paul")
client = APIClient()
client.force_login(user)

Expand Down
Loading