From 3e3331122ed77ec28482f03914da394895cc3333 Mon Sep 17 00:00:00 2001 From: Quazia Date: Fri, 17 Jan 2025 10:22:05 -0500 Subject: [PATCH] test(evm): uncomment the assertion in the topup fuzz test --- packages/evm/test/BoostCore.t.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/evm/test/BoostCore.t.sol b/packages/evm/test/BoostCore.t.sol index 1c3495e2..716eda1f 100644 --- a/packages/evm/test/BoostCore.t.sol +++ b/packages/evm/test/BoostCore.t.sol @@ -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)); @@ -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 {