diff --git a/x/reports/keeper/reports_test.go b/x/reports/keeper/reports_test.go index b2fb9ba45b..aba273872b 100644 --- a/x/reports/keeper/reports_test.go +++ b/x/reports/keeper/reports_test.go @@ -3,9 +3,10 @@ package keeper_test import ( "time" - poststypes "github.com/desmos-labs/desmos/v5/x/posts/types" "github.com/golang/mock/gomock" + poststypes "github.com/desmos-labs/desmos/v5/x/posts/types" + sdk "github.com/cosmos/cosmos-sdk/types" "github.com/desmos-labs/desmos/v5/x/reports/types" diff --git a/x/tokenfactory/client/cli/query.go b/x/tokenfactory/client/cli/query.go index 256debb956..f2808045a3 100644 --- a/x/tokenfactory/client/cli/query.go +++ b/x/tokenfactory/client/cli/query.go @@ -7,9 +7,10 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/version" + "github.com/spf13/cobra" + subspacestypes "github.com/desmos-labs/desmos/v5/x/subspaces/types" "github.com/desmos-labs/desmos/v5/x/tokenfactory/types" - "github.com/spf13/cobra" ) // DONTCOVER diff --git a/x/tokenfactory/keeper/createdenom_test.go b/x/tokenfactory/keeper/createdenom_test.go index 0c8faa1148..e547a3364a 100644 --- a/x/tokenfactory/keeper/createdenom_test.go +++ b/x/tokenfactory/keeper/createdenom_test.go @@ -5,8 +5,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/desmos-labs/desmos/v5/x/tokenfactory/types" "github.com/golang/mock/gomock" + + "github.com/desmos-labs/desmos/v5/x/tokenfactory/types" ) func (suite *KeeperTestSuite) TestKeeper_CreateDenom() { diff --git a/x/tokenfactory/keeper/genesis_test.go b/x/tokenfactory/keeper/genesis_test.go index 9113b704ba..5dd59f4f3a 100644 --- a/x/tokenfactory/keeper/genesis_test.go +++ b/x/tokenfactory/keeper/genesis_test.go @@ -3,8 +3,9 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/desmos-labs/desmos/v5/x/tokenfactory/types" "github.com/golang/mock/gomock" + + "github.com/desmos-labs/desmos/v5/x/tokenfactory/types" ) func (suite *KeeperTestSuite) TestKeeper_ExportGenesis() { diff --git a/x/tokenfactory/keeper/msg_server_test.go b/x/tokenfactory/keeper/msg_server_test.go index 54cdf7971f..74274f7095 100644 --- a/x/tokenfactory/keeper/msg_server_test.go +++ b/x/tokenfactory/keeper/msg_server_test.go @@ -10,9 +10,10 @@ import ( subspacestypes "github.com/desmos-labs/desmos/v5/x/subspaces/types" + "github.com/golang/mock/gomock" + "github.com/desmos-labs/desmos/v5/x/tokenfactory/keeper" "github.com/desmos-labs/desmos/v5/x/tokenfactory/types" - "github.com/golang/mock/gomock" ) func (suite *KeeperTestSuite) TestMsgServer_CreateDenom() { diff --git a/x/tokenfactory/simulation/decoder_test.go b/x/tokenfactory/simulation/decoder_test.go index 134087db5f..bec4c64953 100644 --- a/x/tokenfactory/simulation/decoder_test.go +++ b/x/tokenfactory/simulation/decoder_test.go @@ -5,10 +5,11 @@ import ( "testing" "github.com/cosmos/cosmos-sdk/types/kv" + "github.com/stretchr/testify/require" + "github.com/desmos-labs/desmos/v5/app" "github.com/desmos-labs/desmos/v5/x/tokenfactory/simulation" "github.com/desmos-labs/desmos/v5/x/tokenfactory/types" - "github.com/stretchr/testify/require" ) func TestDecodeStore(t *testing.T) {