From 31891397c725f71343787bf8e081fa45174a23a1 Mon Sep 17 00:00:00 2001 From: TAMARA LIPOWSKI Date: Thu, 13 Mar 2025 11:59:13 -0400 Subject: [PATCH] feat: ExecutorTransferMethods in UniswapV3Executor --- foundry/test/executors/UniswapV3Executor.t.sol | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/foundry/test/executors/UniswapV3Executor.t.sol b/foundry/test/executors/UniswapV3Executor.t.sol index 24bfd22..5da5dea 100644 --- a/foundry/test/executors/UniswapV3Executor.t.sol +++ b/foundry/test/executors/UniswapV3Executor.t.sol @@ -56,8 +56,7 @@ contract UniswapV3ExecutorTest is Test, Constants, Permit2TestHelper { ); pancakeV3Exposed = new UniswapV3ExecutorExposed( PANCAKESWAPV3_DEPLOYER_ETHEREUM, - PANCAKEV3_POOL_CODE_INIT_HASH, - PERMIT2_ADDRESS + PANCAKEV3_POOL_CODE_INIT_HASH, PERMIT2_ADDRESS ); permit2 = IAllowanceTransfer(PERMIT2_ADDRESS); } @@ -134,8 +133,7 @@ contract UniswapV3ExecutorTest is Test, Constants, Permit2TestHelper { int256(0), // amount1Delta dataOffset, dataLength, - protocolData, - address(uniswapV3Exposed) // transferFrom sender (irrelevant in this case) + protocolData ); uniswapV3Exposed.handleCallback(callbackData); vm.stopPrank();