From 49aefc8c2ab25864b4056f44738a96c3905f8396 Mon Sep 17 00:00:00 2001 From: Diana Carvalho Date: Fri, 4 Apr 2025 09:13:36 +0100 Subject: [PATCH] fix: Remove unnecessary test method --- don't change below this line --- ENG-4305 Took 2 minutes --- foundry/test/executors/CurveExecutor.t.sol | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/foundry/test/executors/CurveExecutor.t.sol b/foundry/test/executors/CurveExecutor.t.sol index 32c3a3a..c3b9cad 100644 --- a/foundry/test/executors/CurveExecutor.t.sol +++ b/foundry/test/executors/CurveExecutor.t.sol @@ -335,17 +335,4 @@ contract CurveExecutorTest is Test, Constants { metaRegistry.get_coin_indices(pool, tokenIn, tokenOut); return (coinInIndex, coinOutIndex); } - - function dealAaveDai() internal { - deal(DAI_ADDR, address(curveExecutorExposed), 100_000 * 10 ** 18); - IAaveLendingPool aave = - IAaveLendingPool(0x7d2768dE32b0b80b7a3454c06BdAc94A69DDc7A9); - - vm.startPrank(address(curveExecutorExposed)); - IERC20(DAI_ADDR).approve(address(aave), type(uint256).max); - aave.deposit( - DAI_ADDR, 100_000 * 10 ** 18, address(curveExecutorExposed), 0 - ); - vm.stopPrank(); - } }