Skip to content

Commit

Permalink
Merge pull request #941 from AntelopeIO/fix_missing_f
Browse files Browse the repository at this point in the history
Fix the missing f in f-strings of assert text
  • Loading branch information
linh2931 authored Oct 16, 2024
2 parents 28c782e + 56a7c87 commit 0b46cc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/disaster_recovery_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@

for node in [node1, node2, node3, node4]:
lib = node.getIrreversibleBlockNum()
assert lib < libN, "Node LIB {lib} >= LIB N {libN}"
assert lib < libN, f"Node LIB {lib} >= LIB N {libN}"

Print("Shutdown all nodes")
for node in [node0, node1, node2, node3, node4]:
Expand All @@ -135,7 +135,7 @@
for node in [node4, node3, node2, node1, node0]:
assert node.waitForLibToAdvance(timeout=60), f"Node {node.nodeId} did not advance LIB after relaunch"
lib = node.getIrreversibleBlockNum()
assert lib > libN, "Node LIB {lib} <= LIB N {libN}"
assert lib > libN, f"Node LIB {lib} <= LIB N {libN}"

testSuccessful=True
finally:
Expand Down

0 comments on commit 0b46cc6

Please sign in to comment.