Skip to content

Commit ee2cd0f

Browse files
committed
fix imports
1 parent 0e16b0c commit ee2cd0f

File tree

1 file changed

+7
-13
lines changed

1 file changed

+7
-13
lines changed

x/bank/handler_test.go

+7-13
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,19 @@ import (
44
"strings"
55
"testing"
66

7-
bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper"
8-
9-
"github.com/cosmos/cosmos-sdk/x/bank"
10-
11-
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
12-
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
13-
14-
"github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1"
15-
16-
"github.com/cosmos/cosmos-sdk/x/bank/types"
17-
18-
"github.com/cosmos/cosmos-sdk/simapp"
19-
207
"github.com/stretchr/testify/require"
218
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
229

10+
"github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1"
11+
"github.com/cosmos/cosmos-sdk/simapp"
2312
"github.com/cosmos/cosmos-sdk/testutil/testdata"
2413
sdk "github.com/cosmos/cosmos-sdk/types"
2514
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
15+
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
16+
"github.com/cosmos/cosmos-sdk/x/bank"
17+
bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper"
18+
"github.com/cosmos/cosmos-sdk/x/bank/types"
19+
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
2620
)
2721

2822
func TestInvalidMsg(t *testing.T) {

0 commit comments

Comments
 (0)