From a55568325722161c9f4203d548de5226c0f7b710 Mon Sep 17 00:00:00 2001 From: royvardhan Date: Tue, 11 Feb 2025 22:41:53 +0530 Subject: [PATCH] chore: consistent naming --- foundry/test/executors/UniswapV4Executor.t.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/foundry/test/executors/UniswapV4Executor.t.sol b/foundry/test/executors/UniswapV4Executor.t.sol index c7658fb..45178df 100644 --- a/foundry/test/executors/UniswapV4Executor.t.sol +++ b/foundry/test/executors/UniswapV4Executor.t.sol @@ -38,7 +38,7 @@ contract UniswapV4ExecutorTest is Test, Constants { new UniswapV4ExecutorExposed(IPoolManager(poolManager)); } - function testDecodeParamsUniswapV4() public view { + function testDecodeParams() public view { uint24 expectedPoolFee = 500; address expectedReceiver = address(2); uint128 expectedAmount = 100; @@ -62,7 +62,7 @@ contract UniswapV4ExecutorTest is Test, Constants { assertEq(amount, expectedAmount); } - function testSwapUniswapV4() public { + function testSwap() public { vm.startPrank(BOB); uint256 amountIn = 100 ether; deal(USDE_ADDR, address(uniswapV4Exposed), amountIn);