From 370eb73775cfcc89af48a7f7d872383cc861b39d Mon Sep 17 00:00:00 2001 From: Alex Myers Date: Thu, 9 May 2024 11:16:09 -0500 Subject: [PATCH] pytest: fix flake in test_splice_disconnect_sig This test was failing CI under valgrind. Allow l1 to process incoming signatures before killing. --- tests/test_splicing_disconnect.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_splicing_disconnect.py b/tests/test_splicing_disconnect.py index f20668498b2f..b236fcfff847 100644 --- a/tests/test_splicing_disconnect.py +++ b/tests/test_splicing_disconnect.py @@ -34,6 +34,7 @@ def test_splice_disconnect_sig(node_factory, bitcoind): result = l1.rpc.splice_signed(chan_id, result['signed_psbt']) l1.daemon.wait_for_log(r'dev_disconnect: \-WIRE_TX_SIGNATURES') + time.sleep(.2) print("Killing l1 without sending WIRE_TX_SIGNATURES") l1.daemon.kill()