From 40bd37a1a4e2e96fe36d44e025c5f3a046a9ecb5 Mon Sep 17 00:00:00 2001 From: royvardhan Date: Fri, 21 Feb 2025 23:13:06 +0530 Subject: [PATCH] chore: rm redundant usv3 test --- foundry/test/executors/UniswapV3Executor.t.sol | 8 -------- 1 file changed, 8 deletions(-) diff --git a/foundry/test/executors/UniswapV3Executor.t.sol b/foundry/test/executors/UniswapV3Executor.t.sol index 013fc86..14a6982 100644 --- a/foundry/test/executors/UniswapV3Executor.t.sol +++ b/foundry/test/executors/UniswapV3Executor.t.sol @@ -83,14 +83,6 @@ contract UniswapV3ExecutorTest is Test, Constants { assertEq(computedPair, DAI_WETH_USV3); } - function testComputePairAddressInvalid() public view { - address maliciousPool = DUMMY; // Contract with malicious behavior - - address computedPair = - uniswapV3Exposed.computePairAddress(WETH_ADDR, DAI_ADDR, 3000); - assertNotEq(computedPair, maliciousPool); - } - function testUSV3Callback() public { uint24 poolFee = 3000; uint256 amountOwed = 1000000000000000000;