From 8ef1be767a08ae18499c59ebc6df987724b8ac83 Mon Sep 17 00:00:00 2001 From: Kingster Date: Tue, 19 Nov 2024 22:01:05 -0800 Subject: [PATCH] fix lint --- test/foundry/modules/licensing/LicensingModule.t.sol | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/foundry/modules/licensing/LicensingModule.t.sol b/test/foundry/modules/licensing/LicensingModule.t.sol index 2a60370d..c3e3332a 100644 --- a/test/foundry/modules/licensing/LicensingModule.t.sol +++ b/test/foundry/modules/licensing/LicensingModule.t.sol @@ -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));