Skip to content

Commit bb84948

Browse files
committed
fix test
1 parent bcc1ce0 commit bb84948

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

test/DefaultEmissionManager.t.sol

+1-3
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,7 @@ contract DefaultEmissionManagerTest is Test {
146146
assertApproxEqAbs(newSupply, polygon.totalSupply(), _MAX_PRECISION_DELTA);
147147
uint256 totalAmtMinted = polygon.totalSupply() - initialTotalSupply;
148148
uint256 totalAmtMintedTwoFifth = totalAmtMinted * 2 / 5;
149-
assertEq(matic.balanceOf(stakeManager), totalAmtMinted - totalAmtMintedTwoFifth);
150-
assertEq(matic.balanceOf(treasury), 0);
151-
assertEq(polygon.balanceOf(stakeManager), 0);
149+
assertEq(polygon.balanceOf(stakeManager), totalAmtMinted - totalAmtMintedTwoFifth);
152150
assertEq(polygon.balanceOf(treasury), totalAmtMintedTwoFifth);
153151
}
154152

0 commit comments

Comments
 (0)