Skip to content

Commit e2b125c

Browse files
committed
Fix a variable name in the keeper test that I accidentally added a char to when not looking.
1 parent 04fd051 commit e2b125c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

x/bank/keeper/keeper_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1533,7 +1533,7 @@ func (suite *KeeperTestSuite) TestSpendableCoins() {
15331533
acc2 := authtypes.NewBaseAccountWithAddress(accAddrs[2])
15341534
lockedCoins2 := sdk.NewCoins(sdk.NewInt64Coin("stake", 50), sdk.NewInt64Coin("tarp", 40), sdk.NewInt64Coin("rope", 30))
15351535
balanceCoins2 := sdk.NewCoins(sdk.NewInt64Coin("stake", 49), sdk.NewInt64Coin("tarp", 40), sdk.NewInt64Coin("rope", 31), sdk.NewInt64Coin("pole", 20))
1536-
expCoigns2 := sdk.NewCoins(sdk.NewInt64Coin("rope", 1), sdk.NewInt64Coin("pole", 20))
1536+
expCoins2 := sdk.NewCoins(sdk.NewInt64Coin("rope", 1), sdk.NewInt64Coin("pole", 20))
15371537
vacc2, err := vesting.NewPermanentLockedAccount(acc2, lockedCoins2)
15381538
suite.Require().NoError(err)
15391539

0 commit comments

Comments
 (0)