From 30b6af7ef3429b4c25beb0d40d79447f075f2507 Mon Sep 17 00:00:00 2001 From: tongfengyuan <71140753@chinatelecom.cn> Date: Wed, 2 Sep 2026 08:17:05 +0800 Subject: [PATCH] fix(test): pass http_client to ApplicationContext::new in queue test ApplicationContext::new gained an http_client parameter but one queue test call site was not updated, so `cargo test --lib` fails to compile on main. --- src/call/app/queue_test.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/call/app/queue_test.rs b/src/call/app/queue_test.rs index ea9cc638a..18bc49b91 100644 --- a/src/call/app/queue_test.rs +++ b/src/call/app/queue_test.rs @@ -2810,6 +2810,7 @@ mod tests { route_name: None, }, Arc::new(crate::config::Config::default()), + reqwest::Client::new(), ); ctx.rwi_gateway = Some(gw);