| 588 | async def test_session_not_found_message_includes_alignment_hint(): |
| 589 | |
| 590 | class RunnerWithMismatch(Runner): |
| 591 | |
| 592 | def _infer_agent_origin( |
| 593 | self, agent: BaseAgent |
| 594 | ) -> tuple[Optional[str], Optional[Path]]: |
| 595 | del agent |
| 596 | return "expected_app", Path("/workspace/agents/expected_app") |
| 597 | |
| 598 | session_service = InMemorySessionService() |
| 599 | runner = RunnerWithMismatch( |
no outgoing calls