STATUS: FIXED (verified 2026-06-07) — the two sites below now use
Arc::new(agent).run(). A third, undocumented site (ic/tests/e2e_telegram_message_routing.rs:231) had the same bug and was blocking the entire test suite from compiling; it has been wrapped too, socargo testcompiles again.
- tests/support/gateway_workflow_harness.rs:295
- tests/support/test_rig.rs:818
- Both call agent.run() on a plain Agent, but Agent::run() now takes self: Arc. The fix is wrapping with Arc::new(agent).run() as the compiler suggests. This is the same class of issue as the engine tests — the test support code wasn't updated after a production refactor. Not related to the version bump.