Skip to content

Fix syntax error in grouped use import in src/server/config/tests.rs #312

@coderabbitai

Description

@coderabbitai

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

Metadata

Metadata

Assignees

Labels

No labels
No labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions