From 180ea5bb38b4445340a833c12f7023597d968571 Mon Sep 17 00:00:00 2001 From: Jan Sarenik Date: Sun, 26 May 2019 09:49:39 +0200 Subject: [PATCH] test_closing.py: isAlive -> is_alive isAlive() is deprecated, use is_alive() instead --- tests/test_closing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_closing.py b/tests/test_closing.py index 9c150882a..4a2b8466e 100644 --- a/tests/test_closing.py +++ b/tests/test_closing.py @@ -779,7 +779,7 @@ def test_onchain_middleman(node_factory, bitcoind): print("Got err from sendpay thread") raise err t.join(timeout=1) - assert not t.isAlive() + assert not t.is_alive() # Three more, l2 can spend to-us. bitcoind.generate_block(3)