Skip to content

Commit

Permalink
finally fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
stackman27 committed Aug 2, 2023
1 parent e59ed52 commit d3bae35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/gamm/keeper/migrate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1055,7 +1055,7 @@ func (s *KeeperTestSuite) TestCreateConcentratedPoolFromCFMM() {
balancerPool, err := s.App.PoolManagerKeeper.GetPool(s.Ctx, balancerId)
s.Require().NoError(err)

clPoolReturned, err := s.App.GAMMKeeper.CreateConcentratedPoolFromCFMM(s.Ctx, tc.cfmmPoolIdToLinkWith, tc.desiredDenom0, defaultTickSpacing)
clPoolReturned, err := s.App.GAMMKeeper.CreateConcentratedPoolFromCFMM(s.Ctx, tc.cfmmPoolIdToLinkWith, tc.desiredDenom0, defaultTickSpacing, sdk.ZeroDec())

if tc.expectError != nil {
s.Require().Error(err)
Expand Down Expand Up @@ -1179,7 +1179,7 @@ func (s *KeeperTestSuite) TestCreateCanonicalConcentratedLiquidityPoolAndMigrati
}
s.App.PoolIncentivesKeeper.SetDistrInfo(s.Ctx, originalDistrInfo)

clPool, err := s.App.GAMMKeeper.CreateCanonicalConcentratedLiquidityPoolAndMigrationLink(s.Ctx, tc.cfmmPoolIdToLinkWith, tc.desiredDenom0, defaultTickSpacing)
clPool, err := s.App.GAMMKeeper.CreateCanonicalConcentratedLiquidityPoolAndMigrationLink(s.Ctx, tc.cfmmPoolIdToLinkWith, tc.desiredDenom0, defaultTickSpacing, sdk.ZeroDec())

if tc.expectError != nil {
s.Require().Error(err)
Expand Down

0 comments on commit d3bae35

Please sign in to comment.