Skip to content

Commit

Permalink
test: fix tokenType bounding
Browse files Browse the repository at this point in the history
  • Loading branch information
dyedm1 committed Nov 27, 2023
1 parent cccfcfe commit 3110d4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/foundry/core/CollateralTracker.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -1006,11 +1006,11 @@ contract CollateralTrackerTest is Test, PositionUtils {
strikeSeed,
uint24(tickSpacing),
currentTick,
1
0
);

// sell as Bob
tokenId = uint256(0).addUniv3pool(poolId).addLeg(0, 1, 1, 0, 0, 0, strike, width);
tokenId = uint256(0).addUniv3pool(poolId).addLeg(0, 1, 0, 0, 0, 0, strike, width);
positionIdList.push(tokenId);

/// calculate position size
Expand Down

0 comments on commit 3110d4c

Please sign in to comment.