Skip to content

Commit

Permalink
fmt again
Browse files Browse the repository at this point in the history
  • Loading branch information
drahnr committed Feb 5, 2025
1 parent 4007881 commit da4da12
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions tests/harness/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -213,9 +213,15 @@ fn create_server_token(server_id: ServerId, auth_token: &str) -> String {

#[cfg(feature = "dist-server")]
pub enum ServerHandle {
Container { cid: String, url: HTTPUrl },
Container {
cid: String,
url: HTTPUrl,
},
#[allow(dead_code)]
Process { pid: Pid, url: HTTPUrl },
Process {
pid: Pid,
url: HTTPUrl,
},
}

#[cfg(feature = "dist-server")]
Expand Down

0 comments on commit da4da12

Please sign in to comment.