Skip to content

Commit

Permalink
Rename owner forwarding tests for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
apbendi committed Jan 23, 2024
1 parent ce34a21 commit 555ef29
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/V3FactoryOwner.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ contract SetAdmin is V3FactoryOwnerTest {
}

contract TransferFactoryOwnership is V3FactoryOwnerTest {
function testFuzz_CurriesNewOwnerToSetOwnerMethodOnFactory(address _newOwner) public {
function testFuzz_ForwardsNewOwnerToSetOwnerMethodOnFactory(address _newOwner) public {
_deployFactoryOwnerWithPayoutAmount(0);

vm.prank(admin);
Expand All @@ -167,7 +167,7 @@ contract TransferFactoryOwnership is V3FactoryOwnerTest {
}

contract EnableFeeAmount is V3FactoryOwnerTest {
function testFuzz_CurriesParametersToTheEnableFeeAmountMethodOnTheFactory(
function testFuzz_ForwardsParametersToTheEnableFeeAmountMethodOnTheFactory(
uint24 _fee,
int24 _tickSpacing
) public {
Expand Down Expand Up @@ -195,7 +195,7 @@ contract EnableFeeAmount is V3FactoryOwnerTest {
}

contract SetFeeProtocol is V3FactoryOwnerTest {
function testFuzz_CurriesParametersToSetFeeProtocolToAPool(
function testFuzz_ForwardsParametersToSetFeeProtocolToAPool(
uint8 _feeProtocol0,
uint8 _feeProtocol1
) public {
Expand Down

0 comments on commit 555ef29

Please sign in to comment.