Skip to content

Commit

Permalink
GH-1091 Better output on failure
Browse files Browse the repository at this point in the history
  • Loading branch information
heifner committed Jan 13, 2025
1 parent 65431db commit 5c0e192
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/disaster_recovery_3.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
for node in [node2, node3]:
assert node.waitForBlock(n_LIB, timeout=None, blockType=BlockType.lib), "Node did not advance LIB after shutdown of node0 and node1"
currentLIB = node.getIrreversibleBlockNum()
assert currentLIB == n_LIB, f"Node advanced LIB {currentLIB} beyond N LIB {n_LIB}"
assert currentLIB == n_LIB, f"Node {node.nodeId} advanced LIB {currentLIB} beyond N LIB {n_LIB}"

Print("Shutdown other two nodes")
for node in [node2, node3]:
Expand Down

0 comments on commit 5c0e192

Please sign in to comment.