Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
julienrbrt committed Mar 8, 2024
1 parent c108dd8 commit d4d66db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/bank/keeper/genesis_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ func (suite *KeeperTestSuite) TestTotalSupply() {
if tc.expErrMsg != "" {
suite.Require().ErrorContains(suite.bankKeeper.InitGenesis(suite.ctx, tc.genesis), tc.expErrMsg)
} else {
suite.bankKeeper.InitGenesis(suite.ctx, tc.genesis)
suite.Require().NoError(suite.bankKeeper.InitGenesis(suite.ctx, tc.genesis))
totalSupply, _, err := suite.bankKeeper.GetPaginatedTotalSupply(suite.ctx, &query.PageRequest{Limit: query.PaginationMaxLimit})
suite.Require().NoError(err)

Expand Down

0 comments on commit d4d66db

Please sign in to comment.