Skip to content

Commit

Permalink
chore: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Larkooo committed Jan 24, 2024
1 parent eb84c61 commit 87cbc61
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions crates/torii/libp2p/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ mod test {

use crate::server::Relay;

let _ = tracing_subscriber::fmt().with_env_filter("torii::relay::client=debug,torii::relay::server=debug").try_init();
let _ = tracing_subscriber::fmt()
.with_env_filter("torii::relay::client=debug,torii::relay::server=debug")
.try_init();
// Initialize the relay server
let mut relay_server: Relay = Relay::new(9090, 9091, None, None)?;
tokio::spawn(async move {
Expand Down Expand Up @@ -78,7 +80,7 @@ mod test {
// Make sure the cert hash is correct - corresponding to the cert in the relay server
let mut client = RelayClient::new(
"/ip4/127.0.0.1/udp/9091/webrtc-direct/certhash/\
uEiD6v3wzt8XU3s3SqgNSBJPvn9E0VMVFm8-G0iSEsIIDxw"
uEiD6v3wzt8XU3s3SqgNSBJPvn9E0VMVFm8-G0iSEsIIDxw"
.to_string(),
)?;

Expand Down

0 comments on commit 87cbc61

Please sign in to comment.