From d103ca9e33f931f18c8af79efa5d77d801bab2e9 Mon Sep 17 00:00:00 2001 From: zach Date: Wed, 26 Mar 2025 23:04:45 +0800 Subject: [PATCH] fix: swap test --- foundry/test/executors/MaverickV2Executor.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/foundry/test/executors/MaverickV2Executor.t.sol b/foundry/test/executors/MaverickV2Executor.t.sol index 14769e9..09b6793 100644 --- a/foundry/test/executors/MaverickV2Executor.t.sol +++ b/foundry/test/executors/MaverickV2Executor.t.sol @@ -53,7 +53,7 @@ contract MaverickV2ExecutorTest is Test, Constants { function testSwap() public { uint256 amountIn = 10 ** 18; bytes memory protocolData = - abi.encodePacked(GHO_ADDR, GHO_USDC_POOL, address(2)); + abi.encodePacked(GHO_ADDR, GHO_USDC_POOL, BOB); deal(GHO_ADDR, address(maverickV2Exposed), amountIn); uint256 balanceBefore = GHO.balanceOf(BOB);