Skip to content

Commit

Permalink
clean test
Browse files Browse the repository at this point in the history
  • Loading branch information
snreynolds committed Dec 7, 2023
1 parent 685ebfc commit cebc2dd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/Tick.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ contract TickTest is Test, GasSnapshot {
assertEq(info.feeGrowthOutside1X128, 2);
}

function test_getTickInfo(int24 tick, Pool.TickInfo memory info) public {
function test_getPoolTickInfo(int24 tick, Pool.TickInfo memory info) public {
setTick(tick, info);
Pool.TickInfo memory actualInfo = pool.getPoolTickInfo(tick);
assertEq(actualInfo.liquidityGross, info.liquidityGross);
Expand All @@ -479,8 +479,6 @@ contract TickTest is Test, GasSnapshot {
assertEq(pool.getPoolBitmapInfo(word), bitmap);
}

function test_getPoolTickBitmap() public {}

function testTick_tickSpacingToParametersInvariants_fuzz(int24 tickSpacing) public {
vm.assume(tickSpacing <= TickMath.MAX_TICK_SPACING);
vm.assume(tickSpacing >= TickMath.MIN_TICK_SPACING);
Expand Down

0 comments on commit cebc2dd

Please sign in to comment.