diff --git a/test/fork/LockupDynamic.t.sol b/test/fork/LockupDynamic.t.sol index 36152e12a..dace293ab 100644 --- a/test/fork/LockupDynamic.t.sol +++ b/test/fork/LockupDynamic.t.sol @@ -101,7 +101,7 @@ abstract contract LockupDynamic_Fork_Test is Fork_Test { /// - It may cancel the stream /// - It may emit a {CancelLockupStream} event /// - /// Given enough test runs, all of the following scenarios will be fuzzed: + /// Given enough fuzz runs, all of the following scenarios will be fuzzed: /// /// - Multiple values for the funder, recipient, sender, and broker /// - Multiple values for the total amount diff --git a/test/fork/LockupLinear.t.sol b/test/fork/LockupLinear.t.sol index 149ff8227..eba56cdfb 100644 --- a/test/fork/LockupLinear.t.sol +++ b/test/fork/LockupLinear.t.sol @@ -98,7 +98,7 @@ abstract contract LockupLinear_Fork_Test is Fork_Test { /// - It may cancel the stream /// - It may emit a {CancelLockupStream} event /// - /// Given enough test runs, all of the following scenarios will be fuzzed: + /// Given enough fuzz runs, all of the following scenarios will be fuzzed: /// /// - Multiple values for the sender, recipient, and broker /// - Multiple values for the total amount diff --git a/test/integration/fuzz/flash-loan/flashFee.t.sol b/test/integration/fuzz/flash-loan/flashFee.t.sol index 63fc9095a..fb73de14a 100644 --- a/test/integration/fuzz/flash-loan/flashFee.t.sol +++ b/test/integration/fuzz/flash-loan/flashFee.t.sol @@ -11,7 +11,7 @@ contract FlashFee_Integration_Fuzz_Test is FlashLoan_Integration_Shared_Test { _; } - /// @dev Given enough test runs, all of the following scenarios will be fuzzed: + /// @dev Given enough fuzz runs, all of the following scenarios will be fuzzed: /// /// - Multiple values for the comptroller flash fee, including zero /// - Multiple values for the flash loan amount, including zero diff --git a/test/integration/fuzz/flash-loan/flashLoan.t.sol b/test/integration/fuzz/flash-loan/flashLoan.t.sol index 18f9b8f27..c783a2d90 100644 --- a/test/integration/fuzz/flash-loan/flashLoan.t.sol +++ b/test/integration/fuzz/flash-loan/flashLoan.t.sol @@ -45,7 +45,7 @@ contract FlashLoanFunction_Integration_Fuzz_Test is FlashLoanFunction_Integratio }); } - /// @dev Given enough test runs, all of the following scenarios will be fuzzed: + /// @dev Given enough fuzz runs, all of the following scenarios will be fuzzed: /// /// - Multiple values for the comptroller flash fee, including zero /// - Multiple values for the flash loan amount, including zero diff --git a/test/integration/fuzz/lockup-dynamic/createWithMilestones.t.sol b/test/integration/fuzz/lockup-dynamic/createWithMilestones.t.sol index 576e55e01..c30911a5f 100644 --- a/test/integration/fuzz/lockup-dynamic/createWithMilestones.t.sol +++ b/test/integration/fuzz/lockup-dynamic/createWithMilestones.t.sol @@ -190,7 +190,7 @@ contract CreateWithMilestones_LockupDynamic_Integration_Fuzz_Test is uint128 totalAmount; } - /// @dev Given enough test runs, all of the following scenarios will be fuzzed: + /// @dev Given enough fuzz runs, all of the following scenarios will be fuzzed: /// /// - All possible permutations for the funder, sender, recipient, and broker /// - Multiple values for the segment amounts, exponents, and milestones diff --git a/test/integration/fuzz/lockup-dynamic/streamedAmountOf.t.sol b/test/integration/fuzz/lockup-dynamic/streamedAmountOf.t.sol index ac02bb03a..d8755e6f8 100644 --- a/test/integration/fuzz/lockup-dynamic/streamedAmountOf.t.sol +++ b/test/integration/fuzz/lockup-dynamic/streamedAmountOf.t.sol @@ -25,7 +25,7 @@ contract StreamedAmountOf_LockupDynamic_Integration_Fuzz_Test is changePrank({ msgSender: users.sender }); } - /// @dev Given enough test runs, all of the following scenarios will be fuzzed: + /// @dev Given enough fuzz runs, all of the following scenarios will be fuzzed: /// /// - End time in the past /// - End time in the present @@ -77,7 +77,7 @@ contract StreamedAmountOf_LockupDynamic_Integration_Fuzz_Test is _; } - /// @dev Given enough test runs, all of the following scenarios will be fuzzed: + /// @dev Given enough fuzz runs, all of the following scenarios will be fuzzed: /// /// - End time in the past /// - End time in the present diff --git a/test/integration/fuzz/lockup-dynamic/withdrawableAmountOf.t.sol b/test/integration/fuzz/lockup-dynamic/withdrawableAmountOf.t.sol index 47413a197..aee569bb8 100644 --- a/test/integration/fuzz/lockup-dynamic/withdrawableAmountOf.t.sol +++ b/test/integration/fuzz/lockup-dynamic/withdrawableAmountOf.t.sol @@ -30,7 +30,7 @@ contract WithdrawableAmountOf_LockupDynamic_Integration_Fuzz_Test is _; } - /// @dev Given enough test runs, all of the following scenarios will be fuzzed: + /// @dev Given enough fuzz runs, all of the following scenarios will be fuzzed: /// /// - End time in the past /// - End time in the present @@ -62,7 +62,7 @@ contract WithdrawableAmountOf_LockupDynamic_Integration_Fuzz_Test is _; } - /// @dev Given enough test runs, all of the following scenarios will be fuzzed: + /// @dev Given enough fuzz runs, all of the following scenarios will be fuzzed: /// /// - End time in the past /// - End time in the present diff --git a/test/integration/fuzz/lockup-linear/createWithRange.t.sol b/test/integration/fuzz/lockup-linear/createWithRange.t.sol index cb23d3737..2bd4b8f3d 100644 --- a/test/integration/fuzz/lockup-linear/createWithRange.t.sol +++ b/test/integration/fuzz/lockup-linear/createWithRange.t.sol @@ -111,7 +111,7 @@ contract CreateWithRange_LockupLinear_Integration_Fuzz_Test is uint128 initialProtocolRevenues; } - /// @dev Given enough test runs, all of the following scenarios will be fuzzed: + /// @dev Given enough fuzz runs, all of the following scenarios will be fuzzed: /// /// - All possible permutations for the funder, sender, recipient, and broker /// - Multiple values for the total amount diff --git a/test/integration/fuzz/lockup-linear/streamedAmountOf.t.sol b/test/integration/fuzz/lockup-linear/streamedAmountOf.t.sol index 4b14624e3..590400ff4 100644 --- a/test/integration/fuzz/lockup-linear/streamedAmountOf.t.sol +++ b/test/integration/fuzz/lockup-linear/streamedAmountOf.t.sol @@ -43,7 +43,7 @@ contract StreamedAmountOf_LockupLinear_Integration_Fuzz_Test is _; } - /// @dev Given enough test runs, all of the following scenarios will be fuzzed: + /// @dev Given enough fuzz runs, all of the following scenarios will be fuzzed: /// /// - End time in the past /// - End time in the present diff --git a/test/integration/fuzz/lockup-linear/withdrawableAmountOf.t.sol b/test/integration/fuzz/lockup-linear/withdrawableAmountOf.t.sol index 74f111ca3..07168646e 100644 --- a/test/integration/fuzz/lockup-linear/withdrawableAmountOf.t.sol +++ b/test/integration/fuzz/lockup-linear/withdrawableAmountOf.t.sol @@ -41,7 +41,7 @@ contract WithdrawableAmountOf_LockupLinear_Integration_Fuzz_Test is _; } - /// @dev Given enough test runs, all of the following scenarios will be fuzzed: + /// @dev Given enough fuzz runs, all of the following scenarios will be fuzzed: /// /// - End time in the past /// - End time in the present @@ -83,7 +83,7 @@ contract WithdrawableAmountOf_LockupLinear_Integration_Fuzz_Test is _; } - /// @dev Given enough test runs, all of the following scenarios will be fuzzed: + /// @dev Given enough fuzz runs, all of the following scenarios will be fuzzed: /// /// - End time in the past /// - End time in the present diff --git a/test/integration/fuzz/lockup/cancel.t.sol b/test/integration/fuzz/lockup/cancel.t.sol index 8387a83a3..f83f7ec00 100644 --- a/test/integration/fuzz/lockup/cancel.t.sol +++ b/test/integration/fuzz/lockup/cancel.t.sol @@ -37,7 +37,7 @@ abstract contract Cancel_Integration_Fuzz_Test is Integration_Test, Cancel_Integ assertFalse(isCancelable, "isCancelable"); } - /// @dev Given enough test runs, all of the following scenarios will be fuzzed: + /// @dev Given enough fuzz runs, all of the following scenarios will be fuzzed: /// /// - Multiple values for the current time /// - With and without withdrawals @@ -104,7 +104,7 @@ abstract contract Cancel_Integration_Fuzz_Test is Integration_Test, Cancel_Integ assertEq(actualNFTOwner, expectedNFTOwner, "NFT owner"); } - /// @dev Given enough test runs, all of the following scenarios will be fuzzed: + /// @dev Given enough fuzz runs, all of the following scenarios will be fuzzed: /// /// - Multiple values for the current time /// - With and without withdrawals diff --git a/test/integration/fuzz/lockup/refundableAmountOf.t.sol b/test/integration/fuzz/lockup/refundableAmountOf.t.sol index a3c801b01..340352881 100644 --- a/test/integration/fuzz/lockup/refundableAmountOf.t.sol +++ b/test/integration/fuzz/lockup/refundableAmountOf.t.sol @@ -11,7 +11,7 @@ abstract contract RefundableAmountOf_Integration_Fuzz_Test is Integration_Test, defaultStreamId = createDefaultStream(); } - /// @dev Given enough test runs, all of the following scenarios will be fuzzed: + /// @dev Given enough fuzz runs, all of the following scenarios will be fuzzed: /// /// - Status streaming /// - Status settled diff --git a/test/integration/fuzz/lockup/withdraw.t.sol b/test/integration/fuzz/lockup/withdraw.t.sol index 1c6255705..fea5abecb 100644 --- a/test/integration/fuzz/lockup/withdraw.t.sol +++ b/test/integration/fuzz/lockup/withdraw.t.sol @@ -11,7 +11,7 @@ abstract contract Withdraw_Integration_Fuzz_Test is Integration_Test, Withdraw_I Withdraw_Integration_Shared_Test.setUp(); } - /// @dev Given enough test runs, all of the following scenarios will be fuzzed: + /// @dev Given enough fuzz runs, all of the following scenarios will be fuzzed: /// /// - Multiple values for the withdrawal address. function testFuzz_Withdraw_CallerApprovedOperator(address to) @@ -49,7 +49,7 @@ abstract contract Withdraw_Integration_Fuzz_Test is Integration_Test, Withdraw_I assertEq(actualWithdrawnAmount, expectedWithdrawnAmount, "withdrawnAmount"); } - /// @dev Given enough test runs, all of the following scenarios will be fuzzed: + /// @dev Given enough fuzz runs, all of the following scenarios will be fuzzed: /// /// - Multiple values for the current time. /// - Multiple values for the withdrawal address. @@ -113,7 +113,7 @@ abstract contract Withdraw_Integration_Fuzz_Test is Integration_Test, Withdraw_I assertEq(actualNFTowner, expectedNFTOwner, "NFT owner"); } - /// @dev Given enough test runs, all of the following scenarios will be fuzzed: + /// @dev Given enough fuzz runs, all of the following scenarios will be fuzzed: /// /// - End time in the past /// - End time in the present diff --git a/test/integration/fuzz/lockup/withdrawMaxAndTransfer.t.sol b/test/integration/fuzz/lockup/withdrawMaxAndTransfer.t.sol index 7cc0f282f..3392e4cb7 100644 --- a/test/integration/fuzz/lockup/withdrawMaxAndTransfer.t.sol +++ b/test/integration/fuzz/lockup/withdrawMaxAndTransfer.t.sol @@ -12,7 +12,7 @@ abstract contract WithdrawMaxAndTransfer_Integration_Fuzz_Test is WithdrawMaxAndTransfer_Integration_Shared_Test.setUp(); } - /// @dev Given enough test runs, all of the following scenarios will be fuzzed: + /// @dev Given enough fuzz runs, all of the following scenarios will be fuzzed: /// /// - New recipient same and different from the current one /// - Withdrawable amount zero and not zero