Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kingster-will committed Nov 20, 2024
1 parent a186a40 commit 8ef1be7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/foundry/modules/licensing/LicensingModule.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -1937,14 +1937,14 @@ contract LicensingModuleTest is BaseTest {
}

function test_LicensingModule_setLicensingConfig_revert_newRoyaltyPercentLessThanLicenseTerms() public {
uint256 commRemixTermsId = pilTemplate.registerLicenseTerms(PILFlavors.commercialRemix(
{
uint256 commRemixTermsId = pilTemplate.registerLicenseTerms(
PILFlavors.commercialRemix({
mintingFee: 0,
commercialRevShare: 20_000_000,
royaltyPolicy: address(royaltyPolicyLRP),
currencyToken: address(erc20)
}
));
})
);
MockLicensingHook licensingHook = new MockLicensingHook();
vm.prank(admin);
moduleRegistry.registerModule("MockLicensingHook", address(licensingHook));
Expand Down

0 comments on commit 8ef1be7

Please sign in to comment.