Fix tests

This commit is contained in:
jif-oai
2025-10-17 17:58:37 +02:00
parent d6515aa010
commit ce9347388a
2 changed files with 10 additions and 13 deletions

View File

@@ -101,13 +101,9 @@ impl SolverRole {
.await?;
// Allow more time for the solver to start emitting the
// finalization signal before timing out as "idle".
let _ = session::await_first_idle(
self.hub.as_ref(),
&handle,
Duration::from_secs(120),
None,
)
.await?;
let _ =
session::await_first_idle(self.hub.as_ref(), &handle, Duration::from_secs(120), None)
.await?;
Ok(())
}
}