From d28acb3895659f5341fa634ca7c696ed4b6af03e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=97=8D+85CD?= <50108258+kwaa@users.noreply.github.com> Date: Thu, 25 Jul 2024 17:50:52 +0800 Subject: [PATCH] fix(tests): fix port --- src/activity_sending.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/activity_sending.rs b/src/activity_sending.rs index 3b27e2a..bd57f50 100644 --- a/src/activity_sending.rs +++ b/src/activity_sending.rs @@ -253,7 +253,7 @@ mod tests { .with_state(state); axum::serve( - TcpListener::bind("0.0.0.0:8002").await.unwrap(), + TcpListener::bind("0.0.0.0:8001").await.unwrap(), app.into_make_service(), ) .await