File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ contract CloneERC20VotesTest is Test {
7979 string memory tokenURI ,
8080 uint256 seed
8181 ) public {
82- vm.assume (initialSupply > 0 );
82+ vm.assume (initialSupply > MIN_INITIAL_SUPPLY );
8383 vm.assume (initialSupply < type (uint256 ).max / MAX_TOTAL_PRE_MINT_WAD);
8484 vm.assume (yearlyMintRate <= MAX_YEARLY_MINT_RATE_WAD);
8585
@@ -169,7 +169,7 @@ contract CloneERC20VotesTest is Test {
169169 function testFuzz_initialize_RevertsWhenMaxPreMintPerAddressExceeded (
170170 uint256 initialSupply
171171 ) public {
172- vm.assume (initialSupply > 0 );
172+ vm.assume (initialSupply > MIN_INITIAL_SUPPLY );
173173 vm.assume (initialSupply < type (uint256 ).max / MAX_TOTAL_PRE_MINT_WAD);
174174
175175 address [] memory recipients = new address [](1 );
You can’t perform that action at this time.
0 commit comments