Skip to content

Commit

Permalink
bubble mcms errors
Browse files Browse the repository at this point in the history
  • Loading branch information
tt-cll committed Feb 21, 2025
1 parent 60d011a commit 147b751
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions deployment/common/changeset/test_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,14 @@ func ApplyChangesetsV2(t *testing.T, e deployment.Environment, changesetApplicat
}

p := proposalutils.SignMCMSTimelockProposal(t, e, &prop)
proposalutils.ExecuteMCMSProposalV2(t, e, p)
proposalutils.ExecuteMCMSTimelockProposalV2(t, e, &prop)
err = proposalutils.ExecuteMCMSProposalV2(t, e, p)
if err != nil {
return deployment.Environment{}, err
}
err = proposalutils.ExecuteMCMSTimelockProposalV2(t, e, &prop)
if err != nil {
return deployment.Environment{}, err
}
}
}
if out.MCMSProposals != nil {
Expand Down

0 comments on commit 147b751

Please sign in to comment.