We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4017c4 commit 1107dc2Copy full SHA for 1107dc2
lightning-background-processor/src/lib.rs
@@ -2318,8 +2318,8 @@ mod tests {
2318
2319
begin_open_channel!(nodes[0], nodes[1], channel_value);
2320
assert_eq!(
2321
- first_event_recv.recv_timeout(Duration::from_secs(EVENT_DEADLINE)),
2322
- 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()
2323
);
2324
2325
if !std::thread::panicking() {
0 commit comments