Skip to content

Commit

Permalink
fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
ypatil12 committed Oct 17, 2024
1 parent 1a2833e commit b236cc3
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/test/DevnetLifecycle.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,7 @@ contract Devnet_Lifecycle_Test is Test {
wethStrategy = StrategyBase(0x4f812633943022fA97cb0881683aAf9f318D5Caa);
weth = IERC20(0x94373a4919B3240D86eA41593D5eBa789FEF3848);

// Seed staker with WETH
StdCheats.deal(address(weth), address(staker), wethAmount);

// Set operaetor
// Set operator
operator = cheats.addr(operatorPk);
}

Expand All @@ -67,6 +64,8 @@ contract Devnet_Lifecycle_Test is Test {

function test() public {
if (block.chainid == 17000) {
// Seed staker with WETH
StdCheats.deal(address(weth), address(staker), wethAmount);
_run_lifecycle();
}
}
Expand Down

0 comments on commit b236cc3

Please sign in to comment.