Skip to content

Commit 6c21636

Browse files
committed
Fix permissive test
1 parent 9ce3dd5 commit 6c21636

File tree

1 file changed

+2
-2
lines changed
  • lightning-background-processor/src

1 file changed

+2
-2
lines changed

lightning-background-processor/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2270,8 +2270,8 @@ mod tests {
22702270

22712271
begin_open_channel!(nodes[0], nodes[1], channel_value);
22722272
assert_eq!(
2273-
first_event_recv.recv_timeout(Duration::from_secs(EVENT_DEADLINE)),
2274-
second_event_recv.recv_timeout(Duration::from_secs(EVENT_DEADLINE))
2273+
first_event_recv.recv_timeout(Duration::from_secs(EVENT_DEADLINE)).unwrap(),
2274+
second_event_recv.recv_timeout(Duration::from_secs(EVENT_DEADLINE)).unwrap()
22752275
);
22762276

22772277
if !std::thread::panicking() {

0 commit comments

Comments
 (0)