We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bc33fe commit 76a7cebCopy full SHA for 76a7ceb
x/foundation/keeper/internal/abci_test.go
@@ -22,6 +22,9 @@ func (s *KeeperTestSuite) TestBeginBlocker() {
22
internal.BeginBlocker(ctx, s.impl)
23
24
tax := sdk.NewDecFromInt(s.balance).MulTruncate(taxRatio).TruncateInt()
25
+ // ensure the behavior does not change
26
+ s.Require().Equal(sdk.NewInt(121932631), tax)
27
+
28
expectedAfter := s.balance.Add(tax)
29
after := s.impl.GetTreasury(ctx)
30
s.Require().Equal(1, len(after))
0 commit comments