Skip to content

Commit

Permalink
fix: rename setter/getter in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fragwuerdig committed Jun 27, 2024
1 parent 25ecbca commit 4c6b925
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom/auth/ante/fee_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ func (s *AnteTestSuite) TestTaxExemption() {
// Set burn split rate to 50%
// oracle split to 0% (oracle split is covered in another test)
tk.SetBurnSplitRate(s.ctx, burnSplitRate)
tk.SetOracleSplit(s.ctx, oracleSplitRate)
tk.SetOracleSplitRate(s.ctx, oracleSplitRate)

fmt.Printf("CASE = %s \n", c.name)
s.txBuilder = s.clientCtx.TxConfig.NewTxBuilder()
Expand Down Expand Up @@ -767,7 +767,7 @@ func (s *AnteTestSuite) runBurnSplitTaxTest(burnSplitRate sdk.Dec, oracleSplitRa

// Set burn split tax
tk.SetBurnSplitRate(s.ctx, burnSplitRate)
tk.SetOracleSplit(s.ctx, oracleSplitRate)
tk.SetOracleSplitRate(s.ctx, oracleSplitRate)

// keys and addresses
priv1, _, addr1 := testdata.KeyTestPubAddr()
Expand Down

0 comments on commit 4c6b925

Please sign in to comment.