run make format (#6416)
This commit is contained in:
parent
3228c3b12a
commit
ddbb9a2321
|
@ -141,9 +141,9 @@ func TestManager_RegisterRoutes(t *testing.T) {
|
|||
|
||||
router := mocks.NewMockRouter(mockCtrl)
|
||||
handler1, handler2 := sdk.Handler(func(ctx sdk.Context, msg sdk.Msg) (*sdk.Result, error) {
|
||||
return nil,nil
|
||||
return nil, nil
|
||||
}), sdk.Handler(func(ctx sdk.Context, msg sdk.Msg) (*sdk.Result, error) {
|
||||
return nil,nil
|
||||
return nil, nil
|
||||
})
|
||||
route1 := sdk.NewRoute("route1", handler1)
|
||||
route2 := sdk.NewRoute("route2", handler2)
|
||||
|
|
|
@ -1,24 +1,25 @@
|
|||
package types
|
||||
|
||||
import (
|
||||
"github.com/stretchr/testify/assert"
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
func TestNilRoute(t *testing.T) {
|
||||
tests := []struct{
|
||||
name string
|
||||
route Route
|
||||
tests := []struct {
|
||||
name string
|
||||
route Route
|
||||
expected bool
|
||||
} {
|
||||
}{
|
||||
{
|
||||
name: "all empty",
|
||||
route: NewRoute("", nil),
|
||||
name: "all empty",
|
||||
route: NewRoute("", nil),
|
||||
expected: true,
|
||||
},
|
||||
{
|
||||
name: "only path",
|
||||
route: NewRoute("some", nil),
|
||||
name: "only path",
|
||||
route: NewRoute("some", nil),
|
||||
expected: true,
|
||||
},
|
||||
{
|
||||
|
@ -37,7 +38,7 @@ func TestNilRoute(t *testing.T) {
|
|||
},
|
||||
}
|
||||
|
||||
for _, tt := range tests {
|
||||
for _, tt := range tests {
|
||||
tt := tt
|
||||
t.Run(tt.name, func(t *testing.T) {
|
||||
assert.Equal(t, tt.expected, tt.route.Empty())
|
||||
|
|
|
@ -4,6 +4,7 @@ import (
|
|||
"encoding/json"
|
||||
|
||||
ics23 "github.com/confio/ics23/go"
|
||||
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ import (
|
|||
"github.com/cosmos/cosmos-sdk/x/ibc/04-channel/types"
|
||||
)
|
||||
|
||||
// TestQueryChannels tests singular, muliple, and no connection for
|
||||
// TestQueryChannels tests singular, multiple, and no connection for
|
||||
// correct retrieval of all channels.
|
||||
func (suite *KeeperTestSuite) TestQueryChannels() {
|
||||
path := []string{types.SubModuleName, types.QueryAllChannels}
|
||||
|
|
|
@ -7,6 +7,7 @@ import (
|
|||
"strings"
|
||||
|
||||
ics23 "github.com/confio/ics23/go"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
|
||||
|
|
|
@ -5,6 +5,7 @@ import (
|
|||
"net/url"
|
||||
|
||||
ics23 "github.com/confio/ics23/go"
|
||||
|
||||
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
|
||||
"github.com/cosmos/cosmos-sdk/x/ibc/23-commitment/exported"
|
||||
host "github.com/cosmos/cosmos-sdk/x/ibc/24-host"
|
||||
|
|
|
@ -5,9 +5,10 @@ package cli_test
|
|||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/tests/cli"
|
||||
"github.com/cosmos/cosmos-sdk/x/mint/client/testutil"
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
||||
func TestCLIMintQueries(t *testing.T) {
|
||||
|
|
|
@ -3,11 +3,12 @@ package testutil
|
|||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/tests"
|
||||
"github.com/cosmos/cosmos-sdk/tests/cli"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
"github.com/cosmos/cosmos-sdk/x/mint/types"
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
||||
// QueryMintingParams returns the current minting parameters
|
||||
|
|
Loading…
Reference in New Issue