Skip to content

Commit 4bc853b

Browse files
author
MarcoFalke
committed
Merge #10636: [qa] util: Check return code after closing bitcoind proc
999923e [qa] util: Check return code after closing bitcoind proc (MarcoFalke) Tree-SHA512: 1aa911e5ce25ef59b006b7f8f25e5eef3c6c31f1b4362564e158ed92dd7804625fccc08be8b98c8c32779b530a8ec988819947692698214e34f5cb1d411c9eda
2 parents 01c4b14 + 999923e commit 4bc853b

File tree

1 file changed

+1
-1
lines changed
  • test/functional/test_framework

1 file changed

+1
-1
lines changed

test/functional/test_framework/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,8 +322,8 @@ def _stop_node(node, i):
322322
except http.client.CannotSendRequest as e:
323323
logger.exception("Unable to stop node")
324324
return_code = bitcoind_processes[i].wait(timeout=BITCOIND_PROC_WAIT_TIMEOUT)
325-
assert_equal(return_code, 0)
326325
del bitcoind_processes[i]
326+
assert_equal(return_code, 0)
327327

328328
def _stop_nodes(nodes):
329329
"""Stop multiple bitcoind test nodes

0 commit comments

Comments
 (0)