From 266da65c00ce49f8c99b7f5ecbc437b0c2c1e52c Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Mon, 21 Jun 2021 12:45:43 +0200 Subject: [PATCH] fixup! pytest: Add test for keysend extra-tlvs --- tests/test_pay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_pay.py b/tests/test_pay.py index 42568e6d7212..c73b612328f1 100644 --- a/tests/test_pay.py +++ b/tests/test_pay.py @@ -3105,7 +3105,7 @@ def test_keysend_extra_tlvs(node_factory): l1.rpc.keysend(l2.info['id'], amt, extra_tlvs={133773310: 'FEEDC0DE'}) invs = l2.rpc.listinvoices()['invoices'] assert(len(invs) == 1) - assert(l2.daemon.is_in_log(r'plugin-sphinx-receiver.py.*extra_tlvs.*133773310.*feedc0de')) + assert(l2.daemon.is_in_log(r'plugin-sphinx-receiver.py.*extratlvs.*133773310.*feedc0de')) inv = invs[0] print(inv)