Skip to content

Commit

Permalink
chore: renaming ica migrations handler pkg version (#2355)
Browse files Browse the repository at this point in the history
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
damiannolan and mergify[bot] committed Sep 26, 2022
1 parent d527aa3 commit 1dca3b0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v5
package v6

import (
"github.com/cosmos/cosmos-sdk/codec"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package v5_test
package v6_test

import (
"testing"

capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types"
"github.com/stretchr/testify/suite"

v5 "github.com/cosmos/ibc-go/v6/modules/apps/27-interchain-accounts/controller/migrations/v5"
v6 "github.com/cosmos/ibc-go/v6/modules/apps/27-interchain-accounts/controller/migrations/v6"
"github.com/cosmos/ibc-go/v6/modules/apps/27-interchain-accounts/controller/types"
icatypes "github.com/cosmos/ibc-go/v6/modules/apps/27-interchain-accounts/types"
channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types"
Expand Down Expand Up @@ -117,7 +117,7 @@ func (suite *MigrationsTestSuite) TestMigrateICS27ChannelCapability() {

suite.ResetMemStore() // empty the x/capability in-memory store

err = v5.MigrateICS27ChannelCapability(
err = v6.MigrateICS27ChannelCapability(
suite.chainA.GetContext(),
suite.chainA.Codec,
suite.chainA.GetSimApp().GetKey(capabilitytypes.StoreKey),
Expand Down

0 comments on commit 1dca3b0

Please sign in to comment.