Skip to content

Commit 26970da

Browse files
committed
fix: update test import to match renamed LLM service class
1 parent 5786ea1 commit 26970da

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/tests/test_review.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ def test_cache_key_differs_for_different_action(self):
236236
@pytest.mark.asyncio
237237
async def test_cache_hit_skips_llm_call(self):
238238
"""When cache has a result, the LLM should NOT be called."""
239-
from app.services.llm import LLMService
239+
from app.services.llm import MockLLMService as LLMService
240240

241241
service = LLMService.__new__(LLMService)
242242
service.review_parser = MagicMock()

0 commit comments

Comments
 (0)