manaul correction attempts

This commit is contained in:
ed
2026-06-15 19:14:22 -04:00
parent 33fcedefc7
commit f9832b07b3
7 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -72,7 +72,7 @@ def test_rag_integration(mock_project):
# message sent to the provider. We use 'wraps' to let the real logic run
# while still having a mock we can inspect. We also mock the internal
# _send_gemini which is what actually "sends to the provider".
with patch('src.ai_client.send', wraps=ai_client.send) as mock_send:
with patch('src.ai_client.send_result', wraps=ai_client.send_result) as mock_send:
with patch('src.ai_client._send_gemini') as mock_provider:
mock_provider.return_value = "Mock AI Response"