Skip to content

Commit 8012163

Browse files
committed
Fix format
1 parent 0f64588 commit 8012163

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: tests/condvar.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ fn wait_timeout_without_lock() {
3232
let m = Mutex::new(false);
3333
let c = Condvar::new();
3434

35-
let (_, wait_result) = c.wait_timeout(m.lock().await, Duration::from_millis(10)).await;
35+
let (_, wait_result) = c
36+
.wait_timeout(m.lock().await, Duration::from_millis(10))
37+
.await;
3638
assert!(wait_result.timed_out());
3739
})
3840
}

0 commit comments

Comments
 (0)