Skip to content

Commit ebfb043

Browse files
committed
Fix after main rebase
1 parent b26dd39 commit ebfb043

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

iroh/src/endpoint.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2307,7 +2307,7 @@ mod tests {
23072307
.bind()
23082308
.await?;
23092309
// Wait for the endpoint to be reachable via relay
2310-
ep.home_relay().initialized().await?;
2310+
ep.home_relay().initialized().await;
23112311

23122312
let server = tokio::spawn(
23132313
async move {
@@ -2461,7 +2461,7 @@ mod tests {
24612461
.bind()
24622462
.await?;
24632463
// Also make sure the server has a working relay connection
2464-
ep.home_relay().initialized().await?;
2464+
ep.home_relay().initialized().await;
24652465

24662466
info!(time = ?test_start.elapsed(), "test setup done");
24672467

0 commit comments

Comments
 (0)