Skip to content

Commit 1107dc2

Browse files
committed
Fix permissive test
1 parent e4017c4 commit 1107dc2

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2318,8 +2318,8 @@ mod tests {
23182318

23192319
begin_open_channel!(nodes[0], nodes[1], channel_value);
23202320
assert_eq!(
2321-
first_event_recv.recv_timeout(Duration::from_secs(EVENT_DEADLINE)),
2322-
second_event_recv.recv_timeout(Duration::from_secs(EVENT_DEADLINE))
2321+
first_event_recv.recv_timeout(Duration::from_secs(EVENT_DEADLINE)).unwrap(),
2322+
second_event_recv.recv_timeout(Duration::from_secs(EVENT_DEADLINE)).unwrap()
23232323
);
23242324

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

0 commit comments

Comments
 (0)