Skip to content

Commit

Permalink
chore: format Go files
Browse files Browse the repository at this point in the history
  • Loading branch information
RiccardoM committed Jul 5, 2023
1 parent 1ac218f commit 6a7a8db
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
3 changes: 2 additions & 1 deletion x/reports/keeper/reports_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 2 additions & 1 deletion x/tokenfactory/client/cli/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion x/tokenfactory/keeper/createdenom_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
3 changes: 2 additions & 1 deletion x/tokenfactory/keeper/genesis_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
3 changes: 2 additions & 1 deletion x/tokenfactory/keeper/msg_server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
3 changes: 2 additions & 1 deletion x/tokenfactory/simulation/decoder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 6a7a8db

Please sign in to comment.