Skip to content

Commit 76a7ceb

Browse files
committed
Ensure the behavior does not change
1 parent 7bc33fe commit 76a7ceb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

x/foundation/keeper/internal/abci_test.go

+3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ func (s *KeeperTestSuite) TestBeginBlocker() {
2222
internal.BeginBlocker(ctx, s.impl)
2323

2424
tax := sdk.NewDecFromInt(s.balance).MulTruncate(taxRatio).TruncateInt()
25+
// ensure the behavior does not change
26+
s.Require().Equal(sdk.NewInt(121932631), tax)
27+
2528
expectedAfter := s.balance.Add(tax)
2629
after := s.impl.GetTreasury(ctx)
2730
s.Require().Equal(1, len(after))

0 commit comments

Comments
 (0)