Fix permissive test

This commit is contained in:
Elias Rohrer 2024-07-19 10:33:05 +02:00
parent e4017c49a8
commit 1107dc2fec
No known key found for this signature in database
GPG key ID: 36153082BDF676FD

View file

@ -2318,8 +2318,8 @@ mod tests {
begin_open_channel!(nodes[0], nodes[1], channel_value); begin_open_channel!(nodes[0], nodes[1], channel_value);
assert_eq!( assert_eq!(
first_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)) second_event_recv.recv_timeout(Duration::from_secs(EVENT_DEADLINE)).unwrap()
); );
if !std::thread::panicking() { if !std::thread::panicking() {