From fd21b3296cbd1797a64dde794a2c4929af63e3d5 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Wed, 7 Jan 2026 09:50:11 +1030 Subject: [PATCH] pytest: fix test_bitcoin_backend_gianttx flake. signpsbt could be the one which takes a long time, so allow any psbt event. Signed-off-by: Rusty Russell --- tests/test_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_plugin.py b/tests/test_plugin.py index f51e45c33..d62ccf750 100644 --- a/tests/test_plugin.py +++ b/tests/test_plugin.py @@ -1904,7 +1904,7 @@ def test_bitcoin_backend(node_factory, bitcoind): def test_bitcoin_backend_gianttx(node_factory, bitcoind): """Test that a giant tx doesn't crash bcli""" # This complains about how long fundpsbt took. - l1 = node_factory.get_node(start=False, broken_log='Request fundpsbt took') + l1 = node_factory.get_node(start=False, broken_log="That's weird: Request .*psbt took") # With memleak we spend far too much time gathering backtraces. if "LIGHTNINGD_DEV_MEMLEAK" in l1.daemon.env: del l1.daemon.env["LIGHTNINGD_DEV_MEMLEAK"]