Skip to content

Commit

Permalink
test(evm): uncomment the assertion in the topup fuzz test
Browse files Browse the repository at this point in the history
  • Loading branch information
Quazia committed Jan 17, 2025
1 parent c683336 commit 3e33311
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/evm/test/BoostCore.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ contract BoostCoreTest is Test {

// Mint an ERC721 token to the claimant

for (uint160 tokenId = 1; tokenId < 102; tokenId++) {
for (uint160 tokenId = 1; tokenId < 201; tokenId++) {
hoax(address(claimant + tokenId));
mockERC721.mint{value: 0.1 ether}(address(this));

Expand All @@ -690,7 +690,7 @@ contract BoostCoreTest is Test {
);
}

//assertEq(0, mockERC20.balanceOf(address(boostCore)), "unclaimedFunds In boost core");
assertEq(0, mockERC20.balanceOf(address(boostCore)), "unclaimedFunds In boost core");
}

function _do_topup(uint256 amountToMint, uint256 claimLimit, uint256 rewardAmount) internal {
Expand Down

0 comments on commit 3e33311

Please sign in to comment.