diff --git a/tests/test_simple.py b/tests/test_simple.py index 0a56d98..5a977ad 100644 --- a/tests/test_simple.py +++ b/tests/test_simple.py @@ -20,7 +20,7 @@ def test_init(node_factory): def test_pay_amounts(node_factory): - """We steal this from core lightning test_pay.py, and we are try just + """We steal this from core lightning test_pay.py, and we are try just to pay and invoice with amount""" l1, l2 = node_factory.line_graph(2, opts=[{"plugin": barq_binary }, { "plugin": barq_binary}], wait_for_announce=True) inv = l2.rpc.invoice(Millisatoshi("123sat"), 'test_pay_amounts', 'description')['bolt11'] @@ -81,6 +81,7 @@ def test_pay_fail_when_there_is_no_channel(node_factory): assert invoice['status'] == 'unpaid' +@pytest.skip(reason="How we test the ldk rapid gossip sync?") def test_pay_with_ldk_algo(node_factory): """Try LDK algorithm""" l1, l2 = node_factory.line_graph(2, opts=[{"plugin": barq_binary }, { "plugin": barq_binary}], wait_for_announce=True)