Skip to content

Commit

Permalink
Update expected counter values (#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
EricBolten authored Dec 14, 2023
1 parent c5c122d commit fd6c8c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions x/cellarfees/keeper/abci_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ func (suite *KeeperTestSuite) TestAuctionBeginWithSufficientFunds() {
Counters: []cellarfeesTypes.FeeAccrualCounter{
{
Denom: gravityFeeDenom,
Count: 2,
Count: 1,
},
},
})
Expand Down Expand Up @@ -232,7 +232,7 @@ func (suite *KeeperTestSuite) TestAuctionBeginWithInSufficientFunds() {
Counters: []cellarfeesTypes.FeeAccrualCounter{
{
Denom: gravityFeeDenom,
Count: 1,
Count: 0,
},
},
})
Expand Down Expand Up @@ -293,7 +293,7 @@ func (suite *KeeperTestSuite) TestAuctionBeginWithSufficientFundsWrongBlockHeigh
Counters: []cellarfeesTypes.FeeAccrualCounter{
{
Denom: gravityFeeDenom,
Count: 2,
Count: 1,
},
},
})
Expand Down

0 comments on commit fd6c8c6

Please sign in to comment.