From eee7ad3e1c1309364cdcdc9982f1d6e1d53bbfe4 Mon Sep 17 00:00:00 2001 From: Greg Sanders Date: Fri, 3 Feb 2023 21:02:08 -0500 Subject: [PATCH] relax log check for test_closing_higherfee --- tests/test_closing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_closing.py b/tests/test_closing.py index 5224b3893..c344a2bff 100644 --- a/tests/test_closing.py +++ b/tests/test_closing.py @@ -3424,7 +3424,7 @@ def test_closing_higherfee(node_factory, bitcoind, executor): l1.rpc.connect(l2.info['id'], 'localhost', l2.port) # This causes us to *exceed* previous requirements! - l1.daemon.wait_for_log(r'deriving max fee from rate 30000 -> 16560sat \(not 1000000sat\)') + l1.daemon.wait_for_log(r'deriving max fee from rate 30000 -> .*sat \(not 1000000sat\)') # This will fail because l1 restarted! with pytest.raises(RpcError, match=r'Connection to RPC server lost.'):