Skip to content

Commit

Permalink
test: fix tests on base
Browse files Browse the repository at this point in the history
  • Loading branch information
MathisGD committed May 13, 2024
1 parent 2c982d4 commit de336f3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/forge/fork/migration/AaveV3MigrationBundlerForkTest.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,17 @@ contract AaveV3MigrationBundlerForkTest is MigrationForkTest {

uint256 public constant RATE_MODE = 2;

uint256 collateralSupplied = 10_000 ether;
uint256 collateralSupplied = 1_000 ether;
uint256 borrowed = 1 ether;

function setUp() public override {
super.setUp();

_initMarket(WST_ETH, WETH);
if (block.chainid == 1) {
_initMarket(DAI, WETH);
} else if (block.chainid == 8453) {
_initMarket(CB_ETH, WETH);
}

vm.label(AAVE_V3_POOL, "Aave V3 Pool");

Expand Down

0 comments on commit de336f3

Please sign in to comment.