Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-something committed Nov 8, 2023
1 parent eef69de commit 1f5e83f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/forge-test/unit/didRedeem_payParams_Unit.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,8 @@ contract TestJuice721dDelegate_redemption_Unit is UnitTestSetup {
function testJBTieredNFTRewardDelegate_didRedeem_burnRedeemedNFT(uint256 _numberOfNFT) public {
ForTest_JBTiered721Delegate _delegate = _initializeForTestDelegate(5);

// Has to all fit in tier 1
_numberOfNFT = bound(_numberOfNFT, 1, 15);
// Has to all fit in tier 1 minus reserved
_numberOfNFT = bound(_numberOfNFT, 1, 90);

// Mock the directory call
mockAndExpect(
Expand Down

0 comments on commit 1f5e83f

Please sign in to comment.