We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ce3dd5 commit 6c21636Copy full SHA for 6c21636
lightning-background-processor/src/lib.rs
@@ -2270,8 +2270,8 @@ mod tests {
2270
2271
begin_open_channel!(nodes[0], nodes[1], channel_value);
2272
assert_eq!(
2273
- first_event_recv.recv_timeout(Duration::from_secs(EVENT_DEADLINE)),
2274
- second_event_recv.recv_timeout(Duration::from_secs(EVENT_DEADLINE))
+ first_event_recv.recv_timeout(Duration::from_secs(EVENT_DEADLINE)).unwrap(),
+ second_event_recv.recv_timeout(Duration::from_secs(EVENT_DEADLINE)).unwrap()
2275
);
2276
2277
if !std::thread::panicking() {
0 commit comments