src/system/condvar: chore clippy

This commit is contained in:
skoupidi
2024-05-15 21:07:44 +03:00
parent 8280857a00
commit e262b08a85

View File

@@ -229,7 +229,7 @@ mod tests {
.spawn(async move {
select! {
() = cv_.wait().fuse() => (),
() = (|| async {})().fuse() => ()
() = (async {}).fuse() => ()
}
// The above future was dropped and we make a new one