Skip to content

Commit

Permalink
fix tyests
Browse files Browse the repository at this point in the history
  • Loading branch information
aroralanuk committed Oct 24, 2024
1 parent 40a025d commit 1307cd6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions solidity/test/token/HypERC4626Test.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ contract HypERC4626CollateralTest is HypTokenTest {
);

_accrueYield();
localRebasingToken.rebase(DESTINATION);
localRebasingToken.rebase(DESTINATION, bytes(""), address(0));
remoteMailbox.processNextInboundMessage();

uint256 sharesAfterYield = remoteRebasingToken.totalShares();
Expand All @@ -336,7 +336,7 @@ contract HypERC4626CollateralTest is HypTokenTest {
);

_accrueYield();
localRebasingToken.rebase(DESTINATION);
localRebasingToken.rebase(DESTINATION, bytes(""), address(0));
remoteMailbox.processNextInboundMessage();

uint256 bobShareBalanceAfterYield = remoteRebasingToken.shareBalanceOf(
Expand Down Expand Up @@ -600,7 +600,7 @@ contract HypERC4626CollateralTest is HypTokenTest {
);

_accrueYield();
localRebasingToken.rebase(DESTINATION);
localRebasingToken.rebase(DESTINATION, bytes(""), address(0));
remoteMailbox.processNextInboundMessage();

uint256 supplyAfterYield = remoteToken.totalSupply();
Expand Down

0 comments on commit 1307cd6

Please sign in to comment.