mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 12:19:24 +00:00
Fix test failure reporting
This commit is contained in:
@@ -38,8 +38,9 @@ macro_rules! async_sequential {
|
|||||||
let guard = SEQUENTIAL.lock().unwrap();
|
let guard = SEQUENTIAL.lock().unwrap();
|
||||||
let local = tokio::task::LocalSet::new();
|
let local = tokio::task::LocalSet::new();
|
||||||
local.run_until(async move {
|
local.run_until(async move {
|
||||||
if let Err(_) = tokio::task::spawn_local(async move { $body }).await {
|
if let Err(err) = tokio::task::spawn_local(async move { $body }).await {
|
||||||
drop(guard);
|
drop(guard);
|
||||||
|
Err(err).unwrap()
|
||||||
}
|
}
|
||||||
}).await;
|
}).await;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user