Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion tests/support/test_channel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
//! Injects messages into the agent loop via an mpsc sender and captures
//! responses and status events for assertion in tests.

#![allow(dead_code)] // Public API consumed by later test modules (Task 3+).
#![expect(
dead_code,
reason = "test scaffolding exposes helpers consumed by selected integration test modules"
)]

use std::collections::HashMap;
use std::sync::Arc;
Expand Down
Loading