Skip to content

Commit

Permalink
fix: test mint + reserved
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-something committed Dec 9, 2023
1 parent 2b6b2fb commit 59a32be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/forge-test/unit/didPay_Unit.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ contract TestJuice721dDelegate_didPay_Unit is UnitTestSetup {


function testJBTieredNFTRewardDelegate_didPay_mintCorrectAmountsAndReserved(uint256 _initialQuantity, uint256 _tokenToMint, uint256 _reservedRate) public {
_initialQuantity = bound(_initialQuantity, 5, 200);
_initialQuantity = 1000;
_reservedRate = bound(_reservedRate, 0, 100);
_tokenToMint = bound(_tokenToMint, 1, 5);
_tokenToMint = bound(_tokenToMint, 1, 100);

defaultTierParams.initialQuantity = uint32(_initialQuantity);
defaultTierParams.reservedRate = uint16(_reservedRate);
Expand Down

0 comments on commit 59a32be

Please sign in to comment.