Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix licensing module test cases
Browse files Browse the repository at this point in the history
jdubpark committed Dec 7, 2023
1 parent c12391f commit d60502b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/foundry/modules/licensing/LicensingModule.Licensing.sol
Original file line number Diff line number Diff line change
@@ -273,7 +273,7 @@ contract LicensingModuleLicensingTest is BaseTest {
_assertLicenseData(
licenseRegistry.getLicenseData(licenseId),
licenseId,
Licensing.LicenseStatus.Unset,
Licensing.LicenseStatus.Active,
true,
true,
0, // no parent
@@ -290,7 +290,8 @@ contract LicensingModuleLicensingTest is BaseTest {
_assertLicenseData(
licenseRegistry.getLicenseData(childLicenseId),
childLicenseId,
Licensing.LicenseStatus.Unset,
// parent derivativeNeedsApproval = true, so child is pending
Licensing.LicenseStatus.PendingLicensorApproval,
true,
true,
parentLicenseId,

0 comments on commit d60502b

Please sign in to comment.