Problem
There is a syntax error in the grouped use import block in src/server/config/tests.rs around lines 20-31. The grouped import starting with use crate::server::{ is not properly closed before the next use statement, causing a compile error.
Location
File: src/server/config/tests.rs
Lines: 20-31
Expected Fix
Close the grouped import block with }; before the use tokio::net:: statement:
use crate::server::{
test_util::{
TestPreamble,
bind_server,
factory,
free_listener,
listener_addr,
server_with_preamble,
},
BackoffConfig,
};
use tokio::net::{TcpListener, TcpStream};
Backlinks
Problem
There is a syntax error in the grouped use import block in
src/server/config/tests.rsaround lines 20-31. The grouped import starting withuse crate::server::{is not properly closed before the next use statement, causing a compile error.Location
File:
src/server/config/tests.rsLines: 20-31
Expected Fix
Close the grouped import block with
};before theuse tokio::net::statement:Backlinks