From 74cc7dceeee7b2cfdd0470dece3bcc5319490c0a Mon Sep 17 00:00:00 2001 From: phact Date: Mon, 13 Oct 2025 23:34:04 -0400 Subject: [PATCH] 202 not 201 --- tests/integration/test_api_endpoints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_api_endpoints.py b/tests/integration/test_api_endpoints.py index ba451e63..f76061ed 100644 --- a/tests/integration/test_api_endpoints.py +++ b/tests/integration/test_api_endpoints.py @@ -162,7 +162,7 @@ async def test_upload_and_search_endpoint(tmp_path: Path, disable_langflow_inges } upload_resp = await client.post("/router/upload_ingest", files=files) body = upload_resp.json() - assert upload_resp.status_code == 201, upload_resp.text + assert upload_resp.status_code == 202, upload_resp.text assert body.get("status") in {"indexed", "unchanged"} assert isinstance(body.get("id"), str)