fix: add missing imports in test code

- Add ProxyError import and fix Result type annotation in tls.rs
- Add Arc import in stats/mod.rs test module
- Add BodyExt import in metrics.rs test module

These imports were missing causing compilation failures in
cargo test --release with 10 errors.
This commit is contained in:
Vladislav Yaroslavlev
2026-02-24 04:07:14 +03:00
parent 8ba7bc9052
commit 1d71b7e90c
3 changed files with 4 additions and 1 deletions

View File

@@ -497,6 +497,7 @@ impl ReplayStats {
#[cfg(test)]
mod tests {
use super::*;
use std::sync::Arc;
#[test]
fn test_stats_shared_counters() {