Skip to content

Commit

Permalink
fix: replace plan.assert with plan.verify (#202)
Browse files Browse the repository at this point in the history
Will fail till we merge a breaking change with the above migration. This
PR is on standby.
  • Loading branch information
h4ck3rk3y committed Sep 18, 2023
1 parent 30bd4a2 commit 073135d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/testnet_verifier/testnet_verifier.star
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def run_synchronous_testnet_verification(plan, params, el_client_contexts, cl_cl

command = get_cmd(params, el_client_contexts, cl_client_contexts, True)
exec_result = plan.exec(recipe=ExecRecipe(command=command), service_name=SERVICE_NAME)
plan.assert(exec_result["code"], "==", 0)
plan.verify(exec_result["code"], "==", 0)


def get_cmd(params, el_client_contexts, cl_client_contexts, add_binary_name):
Expand Down

0 comments on commit 073135d

Please sign in to comment.