From 2112422c713cf3e497da3351c8317992f77d975f Mon Sep 17 00:00:00 2001 From: mateo-berri <277851410+mateo-berri@users.noreply.github.com> Date: Sat, 8 Aug 2026 16:34:26 -0700 Subject: [PATCH] test(managed-files): read the scoped page id from the row's unified_file_id --- .../litellm_enterprise/proxy/hooks/test_managed_files.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/enterprise/litellm_enterprise/proxy/hooks/test_managed_files.py b/tests/enterprise/litellm_enterprise/proxy/hooks/test_managed_files.py index 9e94b9f2a0f..d3efcf2e7a0 100644 --- a/tests/enterprise/litellm_enterprise/proxy/hooks/test_managed_files.py +++ b/tests/enterprise/litellm_enterprise/proxy/hooks/test_managed_files.py @@ -3119,8 +3119,9 @@ async def test_file_list_cursors_follow_the_owner_scoped_page(): ) managed_row = MagicMock() + managed_row.unified_file_id = "litellm_proxy:mine" managed_row.file_object = { - "id": "litellm_proxy:mine", + "id": "file-mine", "bytes": 100, "created_at": 1, "filename": "mine.jsonl",