From ed59c6091ac666ee8dcdc4ee368ed4f6134e86ad Mon Sep 17 00:00:00 2001 From: iomgaa Date: Thu, 16 Jul 2026 06:34:16 -0400 Subject: [PATCH] test: accept cache_salt kwarg in AgentLoop mock LLM stub --- tests/integration/test_adversarial_filter_e2e.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/test_adversarial_filter_e2e.py b/tests/integration/test_adversarial_filter_e2e.py index 751f301..390379e 100644 --- a/tests/integration/test_adversarial_filter_e2e.py +++ b/tests/integration/test_adversarial_filter_e2e.py @@ -171,6 +171,7 @@ class _MockLLM: *, session_id: str | None = None, parent_call_id: str | None = None, + cache_salt: str | None = None, ) -> LLMResponse: content = json.dumps( {"action": {"tool": "submit_answer", "args": {"answer": self._answer}}}