Skip to content

Commit

Permalink
fix: linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanchriswhite committed Jan 29, 2025
1 parent cf4a0c5 commit 1fbac03
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions x/migration/keeper/morse_account_state_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (

"github.com/stretchr/testify/require"

keepertest "github.com/pokt-network/poktroll/testutil/keeper"
"github.com/pokt-network/poktroll/testutil/nullify"
"github.com/pokt-network/poktroll/x/migration/keeper"
"github.com/pokt-network/poktroll/x/migration/types"
keepertest "github.com/pokt-network/poktroll/testutil/keeper"
"github.com/pokt-network/poktroll/testutil/nullify"
)

func createTestMorseAccountState(keeper keeper.Keeper, ctx context.Context) types.MorseAccountState {
Expand All @@ -22,7 +22,7 @@ func TestMorseAccountStateGet(t *testing.T) {
keeper, ctx := keepertest.MigrationKeeper(t)
item := createTestMorseAccountState(keeper, ctx)
rst, found := keeper.GetMorseAccountState(ctx)
require.True(t, found)
require.True(t, found)
require.Equal(t,
nullify.Fill(&item),
nullify.Fill(&rst),
Expand All @@ -33,6 +33,6 @@ func TestMorseAccountStateRemove(t *testing.T) {
keeper, ctx := keepertest.MigrationKeeper(t)
createTestMorseAccountState(keeper, ctx)
keeper.RemoveMorseAccountState(ctx)
_, found := keeper.GetMorseAccountState(ctx)
require.False(t, found)
_, found := keeper.GetMorseAccountState(ctx)
require.False(t, found)
}

0 comments on commit 1fbac03

Please sign in to comment.