From 3b1c659f14c82eb6128cb234e3aab2744c5034fa Mon Sep 17 00:00:00 2001 From: ogt Date: Fri, 10 Jul 2026 15:27:17 +0800 Subject: [PATCH] test(agent99): mount enterprise ledger route correctly --- .../test_agent99_enterprise_ai_automation_work_items_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/tests/test_agent99_enterprise_ai_automation_work_items_api.py b/apps/api/tests/test_agent99_enterprise_ai_automation_work_items_api.py index 21cecd349..d096f0df7 100644 --- a/apps/api/tests/test_agent99_enterprise_ai_automation_work_items_api.py +++ b/apps/api/tests/test_agent99_enterprise_ai_automation_work_items_api.py @@ -96,7 +96,7 @@ def test_agent99_enterprise_loader_rejects_duplicate_ids(tmp_path: Path) -> None def test_agent99_enterprise_work_items_endpoint_returns_snapshot() -> None: app = FastAPI() - app.include_router(router, prefix="/api/v1/agents") + app.include_router(router, prefix="/api/v1") client = TestClient(app) response = client.get("/api/v1/agents/agent99-enterprise-ai-automation-work-items")