pytest: fix a probable flake on test_channel_opener

This commit is contained in:
Michael Schmoock 2020-11-12 17:33:57 +01:00 committed by neil saitug
parent 90a4476f16
commit 4134c24cc9

View file

@ -2757,6 +2757,10 @@ def test_channel_opener(node_factory):
# close and check for 'closer'
l1.rpc.close(l2.rpc.getinfo()["id"])
l1.daemon.wait_for_log("State changed from CHANNELD_NORMAL to")
l2.daemon.wait_for_log("State changed from CHANNELD_NORMAL to")
# 'closer' should now be set accordingly
assert(l1.rpc.listpeers()['peers'][0]['channels'][0]['closer'] == 'local')
assert(l2.rpc.listpeers()['peers'][0]['channels'][0]['closer'] == 'remote')