Try to fix CI
CI / lint_and_test (push) Successful in 2m34s Details

This commit is contained in:
itqop 2025-07-19 03:44:52 +03:00
parent 8bec6d7f11
commit d046810ce8
1 changed files with 1 additions and 1 deletions

View File

@ -13,8 +13,8 @@ from src.app.config import settings
client = TestClient(app) client = TestClient(app)
@patch("src.app.routers.health.EmbeddingService")
@patch("src.app.routers.health.ChromaStore") @patch("src.app.routers.health.ChromaStore")
@patch("src.app.routers.health.EmbeddingService")
def test_health_endpoint(mock_embedding_service, mock_chroma_store): def test_health_endpoint(mock_embedding_service, mock_chroma_store):
mock_chroma_store.return_value.get_count.return_value = 1 mock_chroma_store.return_value.get_count.return_value = 1
response = client.get("/healthz") response = client.get("/healthz")