Skip to content

Commit

Permalink
Merge pull request #2210 from IntersectMBO/rename_artifacts
Browse files Browse the repository at this point in the history
Rename test artifacts
  • Loading branch information
mkoura authored Feb 1, 2024
2 parents e73ef2d + 507e0d4 commit 6cc514d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions cardano_node_tests/tests/tests_conway/test_committee.py
Original file line number Diff line number Diff line change
Expand Up @@ -1379,7 +1379,9 @@ def _check_zero_cc_state(state: dict):

# Check ratification
rat_zero_cc_gov_state = _check_rat_gov_state(
name_template=f"{temp_template}_rat", action_txid=zero_cc_txid, action_ix=zero_cc_ix
name_template=f"{temp_template}_rat_zero_cc",
action_txid=zero_cc_txid,
action_ix=zero_cc_ix,
)
next_rat_zero_cc_state = rat_zero_cc_gov_state["nextRatifyState"]
_check_zero_cc_state(next_rat_zero_cc_state["nextEnactState"])
Expand All @@ -1395,7 +1397,8 @@ def _check_zero_cc_state(state: dict):
_cur_epoch = cluster.wait_for_new_epoch(padding_seconds=5)
enact_zero_cc_gov_state = cluster.g_conway_governance.query.gov_state()
conway_common.save_gov_state(
gov_state=enact_zero_cc_gov_state, name_template=f"{temp_template}_enact_{_cur_epoch}"
gov_state=enact_zero_cc_gov_state,
name_template=f"{temp_template}_enact_zero_cc_{_cur_epoch}",
)
_check_zero_cc_state(enact_zero_cc_gov_state["enactState"])

Expand Down

0 comments on commit 6cc514d

Please sign in to comment.