@@ -19,6 +19,7 @@ import (
1919 "github.com/smartcontractkit/chainlink-deployments-framework/chain"
2020 aptoschain "github.com/smartcontractkit/chainlink-deployments-framework/chain/aptos"
2121 cldf "github.com/smartcontractkit/chainlink-deployments-framework/deployment"
22+ cldftesthelpers "github.com/smartcontractkit/chainlink-deployments-framework/engine/cld/mcms/proposalutils/testhelpers"
2223 "github.com/smartcontractkit/chainlink-deployments-framework/engine/test/environment"
2324 "github.com/smartcontractkit/chainlink-deployments-framework/engine/test/runtime"
2425
@@ -109,9 +110,9 @@ func TestDeployAptosChainImp_VerifyPreconditions(t *testing.T) {
109110 },
110111 MCMSDeployConfigPerChain : map [uint64 ]types.MCMSWithTimelockConfigV2 {
111112 4457093679053095497 : {
112- Canceller : proposalutils . SingleGroupMCMSV2 (t ),
113- Proposer : proposalutils . SingleGroupMCMSV2 (t ),
114- Bypasser : proposalutils . SingleGroupMCMSV2 (t ),
113+ Canceller : cldftesthelpers . SingleGroupMCMS (t ),
114+ Proposer : cldftesthelpers . SingleGroupMCMS (t ),
115+ Bypasser : cldftesthelpers . SingleGroupMCMS (t ),
115116 TimelockMinDelay : nil , // Invalid min delay
116117 },
117118 },
@@ -260,9 +261,9 @@ func TestDeployAptosChain_Apply(t *testing.T) {
260261 },
261262 MCMSDeployConfigPerChain : map [uint64 ]types.MCMSWithTimelockConfigV2 {
262263 selector : {
263- Canceller : proposalutils . SingleGroupMCMSV2 (t ),
264- Proposer : proposalutils . SingleGroupMCMSV2 (t ),
265- Bypasser : proposalutils . SingleGroupMCMSV2 (t ),
264+ Canceller : cldftesthelpers . SingleGroupMCMS (t ),
265+ Proposer : cldftesthelpers . SingleGroupMCMS (t ),
266+ Bypasser : cldftesthelpers . SingleGroupMCMS (t ),
266267 TimelockMinDelay : big .NewInt (1 ),
267268 },
268269 },
@@ -277,7 +278,7 @@ func TestDeployAptosChain_Apply(t *testing.T) {
277278
278279 err = rt .Exec (
279280 runtime .ChangesetTask (DeployAptosChain {}, ccipConfig ),
280- runtime .SignAndExecuteProposalsTask ([]* ecdsa.PrivateKey {proposalutils .TestXXXMCMSSigner }),
281+ runtime .SignAndExecuteProposalsTask ([]* ecdsa.PrivateKey {cldftesthelpers .TestXXXMCMSSigner }),
281282 )
282283 require .NoError (t , err )
283284
0 commit comments