Skip to content

Commit

Permalink
fix: mint module tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Lockwarr committed Jul 12, 2024
1 parent bf822ee commit 0acfad7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/mint/keeper/keeper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ func (s *KeeperTestSuite) createTestAccounts(numAccs int) []TestAccount {
for i := 0; i < numAccs; i++ {
priv, _, addr := sdktestutil.KeyTestPubAddr()
acc := s.app.AccountKeeper.NewAccountWithAddress(s.ctx, addr)
s.Require().NoError(acc.SetAccountNumber(uint64(i)))
s.Require().NoError(acc.SetAccountNumber(uint64(i + 1000)))
s.app.AccountKeeper.SetAccount(s.ctx, acc)
accounts = append(accounts, TestAccount{acc, priv})
}
Expand Down

0 comments on commit 0acfad7

Please sign in to comment.