Skip to content

Commit

Permalink
code: Format with cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
felinira committed Apr 22, 2024
1 parent 842df6a commit 7366377
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/core/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,8 @@ pub async fn test_file_rust2rust_deprecated() -> eyre::Result<()> {
.name("sender".to_owned())
.spawn(async {
let (welcome, wormhole_future) =
Wormhole::connect_without_code(transfer::APP_CONFIG.id(TEST_APPID).clone(), 2).await?;
Wormhole::connect_without_code(transfer::APP_CONFIG.id(TEST_APPID).clone(), 2)
.await?;
if let Some(welcome) = &welcome.welcome {
log::info!("Got welcome: {}", welcome);
}
Expand Down Expand Up @@ -258,7 +259,8 @@ pub async fn test_file_rust2rust() -> eyre::Result<()> {
.name("sender".to_owned())
.spawn(async {
let mailbox_connection =
MailboxConnection::create(transfer::APP_CONFIG.id(TEST_APPID).clone(), 2).await?;
MailboxConnection::create(transfer::APP_CONFIG.id(TEST_APPID).clone(), 2)
.await?;
if let Some(welcome) = &mailbox_connection.welcome {
log::info!("Got welcome: {}", welcome);
}
Expand Down

0 comments on commit 7366377

Please sign in to comment.