Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
aljo242 committed Dec 5, 2023
1 parent 840d6a9 commit 76229f7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
8 changes: 3 additions & 5 deletions x/feemarket/ante/suite/suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,24 @@ package suite
import (
"testing"

authante "github.com/cosmos/cosmos-sdk/x/auth/ante"

testkeeper "github.com/skip-mev/feemarket/testutils/keeper"
feemarketpost "github.com/skip-mev/feemarket/x/feemarket/post"

"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/client/tx"
cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types"
"github.com/cosmos/cosmos-sdk/testutil/testdata"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/tx/signing"
authante "github.com/cosmos/cosmos-sdk/x/auth/ante"
authsigning "github.com/cosmos/cosmos-sdk/x/auth/signing"
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"

appparams "github.com/skip-mev/feemarket/tests/app/params"
"github.com/skip-mev/feemarket/testutils/encoding"
testkeeper "github.com/skip-mev/feemarket/testutils/keeper"
feemarketante "github.com/skip-mev/feemarket/x/feemarket/ante"
"github.com/skip-mev/feemarket/x/feemarket/ante/mocks"
feemarketpost "github.com/skip-mev/feemarket/x/feemarket/post"
)

type TestSuite struct {
Expand Down
6 changes: 3 additions & 3 deletions x/feemarket/keeper/keeper_test.go
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
package keeper_test

import (
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
testkeeper "github.com/skip-mev/feemarket/testutils/keeper"
"testing"

"cosmossdk.io/math"
storetypes "github.com/cosmos/cosmos-sdk/store/types"
sdk "github.com/cosmos/cosmos-sdk/types"
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
"github.com/stretchr/testify/suite"

appparams "github.com/skip-mev/feemarket/tests/app/params"
"github.com/skip-mev/feemarket/testutils/encoding"
testkeeper "github.com/skip-mev/feemarket/testutils/keeper"
"github.com/skip-mev/feemarket/x/feemarket/keeper"
"github.com/skip-mev/feemarket/x/feemarket/types"
"github.com/skip-mev/feemarket/x/feemarket/types/mocks"
Expand Down

0 comments on commit 76229f7

Please sign in to comment.