Skip to content

Commit

Permalink
Moving reorg suite to actions
Browse files Browse the repository at this point in the history
  • Loading branch information
b-gopalswami committed Aug 9, 2024
1 parent 308f078 commit 8fca517
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package smoke
package actions

import (
"fmt"
Expand Down
4 changes: 2 additions & 2 deletions integration-tests/ccip-tests/smoke/ccip_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1137,7 +1137,7 @@ func testOffRampRateLimits(t *testing.T, rateLimiterConfig contracts.RateLimiter
}

// SetupReorgSuite defines the setup required to perform re-org step
func SetupReorgSuite(t *testing.T, lggr *zerolog.Logger, setupOutput *testsetups.CCIPTestSetUpOutputs) *ReorgSuite {
func SetupReorgSuite(t *testing.T, lggr *zerolog.Logger, setupOutput *testsetups.CCIPTestSetUpOutputs) *actions.ReorgSuite {
var finalitySrc uint64
var finalityDst uint64
if setupOutput.Cfg.SelectedNetworks[0].FinalityTag {
Expand All @@ -1158,7 +1158,7 @@ func SetupReorgSuite(t *testing.T, lggr *zerolog.Logger, setupOutput *testsetups
srcGethHTTPURL = setupOutput.Env.K8Env.URLs["source-chain_http"][0]
dstGethHTTPURL = setupOutput.Env.K8Env.URLs["dest-chain_http"][0]
}
rs, err := NewReorgSuite(t, lggr, &ReorgConfig{
rs, err := actions.NewReorgSuite(t, lggr, &actions.ReorgConfig{
SrcGethHTTPURL: srcGethHTTPURL,
DstGethHTTPURL: dstGethHTTPURL,
SrcFinalityDepth: finalitySrc,
Expand Down

0 comments on commit 8fca517

Please sign in to comment.