Skip to content

Commit cb12b18

Browse files
committed
fix: silence !Send future lint in reporter test helper
1 parent b18e635 commit cb12b18

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

crates/vite_task/src/session/reporter/labeled.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -588,6 +588,10 @@ mod tests {
588588
reporter.new_leaf_execution(path)
589589
}
590590

591+
#[expect(
592+
clippy::future_not_send,
593+
reason = "LeafExecutionReporter futures are !Send in single-threaded reporter tests"
594+
)]
591595
async fn suggestion_for_path(
592596
graph: ExecutionGraph,
593597
path: &LeafExecutionPath,

0 commit comments

Comments
 (0)