From 645670062519a2246c26adc2140273e79d994cab Mon Sep 17 00:00:00 2001 From: Erik De Smedt Date: Wed, 21 Feb 2024 12:36:58 +0100 Subject: [PATCH] Fix test for notification of custommsg I forgot to add a `break` clause at the end of the test. Without the break the test will keep waiting forever on a `custommsg` that will never arrive --- tests/test_cln_rs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_cln_rs.py b/tests/test_cln_rs.py index 655ad5a4fd1c..ef373f3285a4 100644 --- a/tests/test_cln_rs.py +++ b/tests/test_cln_rs.py @@ -436,3 +436,4 @@ def test_grpc_custommsg_notification(node_factory): assert custommsg.peer_id.hex() == l2.info["id"] assert custommsg.payload.hex() == "3131313174657374" assert custommsg.payload == b"1111test" + break