From 5757efa8553a227a301bb116e4e6e29466eb6dc5 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Wed, 23 Jan 2019 18:11:05 +0100 Subject: [PATCH] fixup! pylightning: Add a small test for async rpcmethods --- tests/test_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_plugin.py b/tests/test_plugin.py index 06948a02e..3a071cd35 100644 --- a/tests/test_plugin.py +++ b/tests/test_plugin.py @@ -140,4 +140,4 @@ def test_async_rpcmethod(node_factory, executor): # since the last number is returned for all l1.rpc.callme(42) - assert [r.result() for r in results] == [42]*4 + assert [r.result() for r in results] == [42] * 4