From 7e60ef69744e1ae3f47923ef3f6ed609b444d388 Mon Sep 17 00:00:00 2001 From: niftynei Date: Mon, 16 Nov 2020 19:03:21 -0600 Subject: [PATCH] tests: make connection details correct --- tests/test_connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_connection.py b/tests/test_connection.py index a50739b3d..09f3d2c77 100644 --- a/tests/test_connection.py +++ b/tests/test_connection.py @@ -453,7 +453,7 @@ def test_connect_stresstest(node_factory, executor): # We fire off random connect/disconnect commands. actions = [ (l2.rpc.connect, l1.info['id'], 'localhost', l1.port), - (l3.rpc.connect, l1.info['id'], 'localhost', l3.port), + (l3.rpc.connect, l1.info['id'], 'localhost', l1.port), (l1.rpc.connect, l2.info['id'], 'localhost', l2.port), (l1.rpc.connect, l3.info['id'], 'localhost', l3.port), (l1.rpc.disconnect, l2.info['id'])