diff --git a/src/tests/test_api.py b/src/tests/test_api.py index 6cb89f1..9e735ac 100644 --- a/src/tests/test_api.py +++ b/src/tests/test_api.py @@ -13,8 +13,8 @@ from src.app.config import settings client = TestClient(app) -@patch("src.app.routers.health.EmbeddingService") @patch("src.app.routers.health.ChromaStore") +@patch("src.app.routers.health.EmbeddingService") def test_health_endpoint(mock_embedding_service, mock_chroma_store): mock_chroma_store.return_value.get_count.return_value = 1 response = client.get("/healthz")