Skip to content

Commit

Permalink
undo snapshot ci check
Browse files Browse the repository at this point in the history
  • Loading branch information
snreynolds committed Jun 13, 2023
1 parent 27515c7 commit 1f61c50
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .forge-snapshots/mint with native token.snap
Original file line number Diff line number Diff line change
@@ -1 +1 @@
293959
293882
1 change: 1 addition & 0 deletions .forge-snapshots/simple swap.snap
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
67335
Original file line number Diff line number Diff line change
@@ -1 +1 @@
161293
161216
1 change: 1 addition & 0 deletions .forge-snapshots/swap with hooks.snap
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
67310
1 change: 1 addition & 0 deletions .forge-snapshots/swap with native.snap
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
67335
6 changes: 3 additions & 3 deletions test/foundry-tests/PoolManager.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,7 @@ contract PoolManagerTest is Test, Deployers, TokenFixture, GasSnapshot, IERC1155
params = IPoolManager.SwapParams({zeroForOne: true, amountSpecified: 100, sqrtPriceLimitX96: SQRT_RATIO_1_4});
testSettings = PoolSwapTest.TestSettings({withdrawTokens: false, settleUsingTransfer: false});

snapStart("swap");
snapStart("simple swap");
swapTest.swap(key, params, testSettings);
snapEnd();
}
Expand All @@ -831,7 +831,7 @@ contract PoolManagerTest is Test, Deployers, TokenFixture, GasSnapshot, IERC1155
params = IPoolManager.SwapParams({zeroForOne: true, amountSpecified: 100, sqrtPriceLimitX96: SQRT_RATIO_1_4});
testSettings = PoolSwapTest.TestSettings({withdrawTokens: false, settleUsingTransfer: false});

snapStart("swap");
snapStart("swap with native");
swapTest.swap(key, params, testSettings);
snapEnd();
}
Expand Down Expand Up @@ -863,7 +863,7 @@ contract PoolManagerTest is Test, Deployers, TokenFixture, GasSnapshot, IERC1155
params = IPoolManager.SwapParams({zeroForOne: true, amountSpecified: 100, sqrtPriceLimitX96: SQRT_RATIO_1_4});
testSettings = PoolSwapTest.TestSettings({withdrawTokens: true, settleUsingTransfer: true});

snapStart("swap");
snapStart("swap with hooks");
swapTest.swap(key, params, testSettings);
snapEnd();
}
Expand Down

0 comments on commit 1f61c50

Please sign in to comment.