diff --git a/foundry/test/TychoRouter.t.sol b/foundry/test/TychoRouter.t.sol index be68fbc..6033feb 100644 --- a/foundry/test/TychoRouter.t.sol +++ b/foundry/test/TychoRouter.t.sol @@ -980,9 +980,10 @@ contract TychoRouterTest is TychoRouterTestSetup { } // Base Network Tests - // Make sure to set the fork block to 26857267 for base network + // Make sure to set the RPC_URL to base network function testSwapSingleBase() public { vm.skip(true); + vm.rollFork(26857267); uint256 amountIn = 10 * 10 ** 6; deal(BASE_USDC, tychoRouterAddr, amountIn); diff --git a/foundry/test/executors/UniswapV2Executor.t.sol b/foundry/test/executors/UniswapV2Executor.t.sol index d905802..0b4d705 100644 --- a/foundry/test/executors/UniswapV2Executor.t.sol +++ b/foundry/test/executors/UniswapV2Executor.t.sol @@ -158,9 +158,10 @@ contract UniswapV2ExecutorTest is UniswapV2ExecutorExposed, Test, Constants { } // Base Network Tests - // Make sure to set the fork block to 26857267 for base network + // Make sure to set the RPC_URL to base network function testSwapBaseNetwork() public { vm.skip(true); + vm.rollFork(26857267); uint256 amountIn = 10 * 10 ** 6; bool zeroForOne = true; bytes memory protocolData =