File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -355,13 +355,9 @@ abstract contract IntegrationBase is IntegrationDeployer {
355
355
// Use timewarp to get previous token balances
356
356
uint [] memory prevTokenBalances = _getPrevTokenBalances (staker, tokens);
357
357
358
- for (uint i = 0 ; i < strategies.length ; i++ ) {
359
- // Ignore BeaconChainETH strategy since it doesn't keep track of global strategy shares
360
- if (strategies[i] == BEACONCHAIN_ETH_STRAT) {
361
- continue ;
362
- }
363
- uint256 prevShare = prevShares[i];
364
- uint256 curShare = curShares[i];
358
+ for (uint i = 0 ; i < tokens.length ; i++ ) {
359
+ uint prevBalance = prevTokenBalances[i];
360
+ uint curBalance = curTokenBalances[i];
365
361
366
362
assertEq (prevBalance - removedTokens[i], curBalance, err);
367
363
}
You can’t perform that action at this time.
0 commit comments