Skip to content

Commit

Permalink
enable meth fuzz test for the whole range
Browse files Browse the repository at this point in the history
  • Loading branch information
danoctavian committed Aug 19, 2024
1 parent 99d458b commit d3c1cb5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/integration/ynEIGEN/ynEigen.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,12 @@ contract ynEigenTest is ynEigenIntegrationBaseTest {
}

function testDepositmETHSuccessWithOneDepositFuzz(
// uint256 amount
uint256 amount
) public {

uint256 amount = 2;
// NOTE: mETH doesn't usually work with 10k amounts at a time to stake ETH and obtain it in 1 tx
vm.assume(
amount < 10000 ether && amount >= 2 wei
amount < 1000 ether && amount >= 2 wei
);

IERC20 mETH = IERC20(chainAddresses.lsd.METH_ADDRESS);
Expand Down

0 comments on commit d3c1cb5

Please sign in to comment.