mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-24 15:02:20 +01:00
Fix permissive test
This commit is contained in:
parent
e4017c49a8
commit
1107dc2fec
1 changed files with 2 additions and 2 deletions
|
@ -2318,8 +2318,8 @@ mod tests {
|
|||
|
||||
begin_open_channel!(nodes[0], nodes[1], channel_value);
|
||||
assert_eq!(
|
||||
first_event_recv.recv_timeout(Duration::from_secs(EVENT_DEADLINE)),
|
||||
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()
|
||||
);
|
||||
|
||||
if !std::thread::panicking() {
|
||||
|
|
Loading…
Add table
Reference in a new issue