Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dimkouv committed Nov 28, 2024
1 parent 1554c41 commit abc5950
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration-tests/smoke/ccip/ccip_rmn_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ func runRmnTestCase(t *testing.T, tc rmnTestCase) {

changeset.ReplayLogs(t, envWithRMN.Env.Offchain, envWithRMN.ReplayBlocks)
require.NoError(t, changeset.AddLanesForAll(envWithRMN.Env, onChainState))
disabledNodes := tc.disableOraclesIfThisIsACursingTestCase(t, ctx, envWithRMN)
disabledNodes := tc.disableOraclesIfThisIsACursingTestCase(ctx, t, envWithRMN)

startBlocks, seqNumCommit, seqNumExec := tc.sendMessages(t, onChainState, envWithRMN)
t.Logf("Sent all messages, seqNumCommit: %v seqNumExec: %v", seqNumCommit, seqNumExec)
Expand Down Expand Up @@ -547,7 +547,7 @@ func (tc rmnTestCase) killMarkedRmnNodes(t *testing.T, rmnCluster devenv.RMNClus
}
}

func (tc rmnTestCase) disableOraclesIfThisIsACursingTestCase(t *testing.T, ctx context.Context, envWithRMN changeset.DeployedEnv) []string {
func (tc rmnTestCase) disableOraclesIfThisIsACursingTestCase(ctx context.Context, t *testing.T, envWithRMN changeset.DeployedEnv) []string {
disabledNodes := make([]string, 0)

if len(tc.cursedSourceChainIdxs) > 0 || tc.globalCurse {
Expand Down

0 comments on commit abc5950

Please sign in to comment.