fix: Enhance tests and update NVIDIA Ingest installation instructions (#6753)

This commit is contained in:
Gabriel Luiz Freitas Almeida 2025-02-21 11:05:29 -03:00 committed by GitHub
commit 3940e8a94a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 10 additions and 11 deletions

View file

@ -199,7 +199,7 @@ async def test_list_files(files_client, files_created_api_key, files_flow):
# Then list the files
response = await files_client.get(f"api/v1/files/list/{files_flow.id}", headers=headers)
assert response.status_code == 200
assert response.status_code == 200, f"Expected 200, got {response.status_code}: {response.json()}"
files = response.json()["files"]
assert len(files) == 1
assert files[0].endswith("test.txt")