Skip to content

Commit

Permalink
Gofmt (#995)
Browse files Browse the repository at this point in the history
  • Loading branch information
philipsu522 authored Jul 26, 2023
1 parent e86602b commit c071491
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions app/upgrade_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,12 @@ func TestSkipOptimisticProcessingOnUpgrade(t *testing.T) {
}()

require.Eventually(t, func() bool {
if testWrapper.App.GetOptimisticProcessingInfo() == nil {
if testWrapper.App.GetOptimisticProcessingInfo() == nil {
return false
}
<- testWrapper.App.GetOptimisticProcessingInfo().Completion
<-testWrapper.App.GetOptimisticProcessingInfo().Completion
return true
}, 5 * time.Second, time.Millisecond*100)
}, 5*time.Second, time.Millisecond*100)

// require.Equal(t, res.Status, abci.ResponseProcessProposal_ACCEPT)
require.False(t, testWrapper.App.GetOptimisticProcessingInfo().Aborted)
Expand Down
2 changes: 1 addition & 1 deletion x/oracle/keeper/test_utils.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//nolint
// nolint
package keeper

import (
Expand Down
2 changes: 1 addition & 1 deletion x/tokenfactory/keeper/admins_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (

sdk "github.com/cosmos/cosmos-sdk/types"

"github.com/sei-protocol/sei-chain/x/tokenfactory/types"
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
"github.com/sei-protocol/sei-chain/x/tokenfactory/types"
)

func (suite *KeeperTestSuite) TestAdminMsgs() {
Expand Down

0 comments on commit c071491

Please sign in to comment.