Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ibc committed Oct 19, 2023
1 parent 77dff05 commit 8e9b313
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions rust/src/router/webrtc_transport/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,8 @@ fn create_with_webrtc_server_succeeds() {

let transport = router
.create_webrtc_transport({
let mut webrtc_transport_options = WebRtcTransportOptions::new_with_server(
webrtc_server.clone()
);
let mut webrtc_transport_options =
WebRtcTransportOptions::new_with_server(webrtc_server.clone());
// Let's disable UDP so resulting ICE candidates should only contain TCP.
webrtc_transport_options.enable_udp = false;

Expand Down

0 comments on commit 8e9b313

Please sign in to comment.