From f7f421ca928205ba2b2cec1a1ddd69e13660da2d Mon Sep 17 00:00:00 2001 From: Jongwon Park Date: Thu, 7 Dec 2023 23:32:04 -0800 Subject: [PATCH] Update LicensingModule.Licensing.t.sol --- .../licensing/LicensingModule.Licensing.t.sol | 21 ------------------- 1 file changed, 21 deletions(-) diff --git a/test/foundry/modules/licensing/LicensingModule.Licensing.t.sol b/test/foundry/modules/licensing/LicensingModule.Licensing.t.sol index eb1345f8..0ed3230f 100644 --- a/test/foundry/modules/licensing/LicensingModule.Licensing.t.sol +++ b/test/foundry/modules/licensing/LicensingModule.Licensing.t.sol @@ -213,27 +213,6 @@ contract LicensingModuleLicensingTest is BaseTest { ); } - // function test_LicensingModule_revert_createAction_InvalidLicensorConfig() - // public - // withFrameworkConfig(true, true, Licensing.LicensorConfig(uint(10000))) - // { - // uint256 _parentLicenseId = 0; // no parent - // Licensing.ParamValue[] memory inputParams = _constructInputParams(); - // Licensing.LicenseCreation memory creation = Licensing.LicenseCreation({ - // params: inputParams, - // parentLicenseId: _parentLicenseId, - // ipaId: ipaId_1 - // }); - // vm.prank(ipOrg.owner()); - // vm.expectRevert(Errors.LicensingModule_IpOrgFrameworkNotSet.selector); - // spg.createLicense( - // address(ipOrg), - // creation, - // new bytes[](0), - // new bytes[](0) - // ); - // } - function _constructInputParams() internal pure