fix(tests): fix port

This commit is contained in:
藍+85CD 2024-07-25 17:50:52 +08:00
parent b59c9c45fa
commit d28acb3895
No known key found for this signature in database
GPG key ID: BCB0111111111111

View file

@ -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