From 1b7351d4e2e22e96fd9166b9334b25410f424101 Mon Sep 17 00:00:00 2001 From: Kevin Heifner Date: Mon, 25 Mar 2024 17:04:47 -0500 Subject: [PATCH] GH-2286 Add message to assert. --- tests/transition_to_if.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/transition_to_if.py b/tests/transition_to_if.py index 5966083c6b..3df75ac27a 100755 --- a/tests/transition_to_if.py +++ b/tests/transition_to_if.py @@ -63,7 +63,7 @@ assert cluster.biosNode.waitForLibToAdvance(), "Lib should advance after instant finality activated" assert cluster.biosNode.waitForProducer("defproducera"), "Did not see defproducera" - assert cluster.biosNode.waitForHeadToAdvance(blocksToAdvance=13) # into next producer + assert cluster.biosNode.waitForHeadToAdvance(blocksToAdvance=13), "Head did not advance 13 blocks to next producer" assert cluster.biosNode.waitForLibToAdvance(), "Lib stopped advancing on biosNode" assert cluster.getNode(1).waitForLibToAdvance(), "Lib stopped advancing on Node 1" assert cluster.getNode(4).waitForLibToAdvance(), "Lib stopped advancing on Node 4, irreversible node"