Skip to content

Commit

Permalink
fix: better test naming
Browse files Browse the repository at this point in the history
  • Loading branch information
jcompagni10 committed Sep 25, 2024
1 parent 1848d68 commit f289c3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/dex/keeper/integration_placelimitorder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ func (s *DexTestSuite) TestPlaceLimitOrderInsufficientFunds() {
s.assertAliceLimitSellFails(err, "TokenA", 0, 10)
}

func (s *DexTestSuite) TestPlaceLimitOrderWithDustMinAvgPriceFails() {
func (s *DexTestSuite) TestPlaceLimitOrderGTCWithDustMinAvgPriceFails() {
s.fundAliceBalances(1, 0)
s.fundBobBalances(0, 1)
// GIVEN LP liq at 148.37-148.42 (with dust)
Expand All @@ -268,7 +268,7 @@ func (s *DexTestSuite) TestPlaceLimitOrderWithDustMinAvgPriceFails() {
s.ErrorIs(err, types.ErrLimitPriceNotSatisfied)
}

func (s *DexTestSuite) TestPlaceLimitOrderWithDustMinAvgPrice() {
func (s *DexTestSuite) TestPlaceLimitOrderGTCWithDustMinAvgPrice() {
s.fundAliceBalances(1, 0)
s.fundBobBalances(0, 1)
// GIVEN LP liq at 148.37-148.42 (with dust)
Expand Down

0 comments on commit f289c3e

Please sign in to comment.