Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
simonDos committed Jun 16, 2024
1 parent bcc1ce0 commit bb84948
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/DefaultEmissionManager.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,7 @@ contract DefaultEmissionManagerTest is Test {
assertApproxEqAbs(newSupply, polygon.totalSupply(), _MAX_PRECISION_DELTA);
uint256 totalAmtMinted = polygon.totalSupply() - initialTotalSupply;
uint256 totalAmtMintedTwoFifth = totalAmtMinted * 2 / 5;
assertEq(matic.balanceOf(stakeManager), totalAmtMinted - totalAmtMintedTwoFifth);
assertEq(matic.balanceOf(treasury), 0);
assertEq(polygon.balanceOf(stakeManager), 0);
assertEq(polygon.balanceOf(stakeManager), totalAmtMinted - totalAmtMintedTwoFifth);
assertEq(polygon.balanceOf(treasury), totalAmtMintedTwoFifth);
}

Expand Down

0 comments on commit bb84948

Please sign in to comment.