Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xlc committed Aug 8, 2023
1 parent 168d363 commit 24cfdad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion benches/bench/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ pub async fn ws_server(
.unwrap();

let addr = format!("ws://{}", server.local_addr().unwrap());
let handle = server.start(module).unwrap();
let handle = server.start(module);
(addr, handle)
}

Expand Down
2 changes: 1 addition & 1 deletion src/extensions/client/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ impl TestServerBuilder {
.unwrap();

let addr = server.local_addr().unwrap();
let handle = server.start(self.module).unwrap();
let handle = server.start(self.module);

(addr, handle)
}
Expand Down
2 changes: 1 addition & 1 deletion src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ mod tests {
})
.unwrap();
let addr = format!("ws://{}", server.local_addr().unwrap());
let handle = server.start(module).unwrap();
let handle = server.start(module);
(addr, handle)
}

Expand Down

0 comments on commit 24cfdad

Please sign in to comment.