1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00
This commit is contained in:
Brandon 2025-03-26 17:11:34 -04:00
parent ebd398c75a
commit bd5c97a778
No known key found for this signature in database
GPG Key ID: A0E0EF0B207BA40D

View File

@ -44,7 +44,6 @@ public class OrganizationLicenseTests
// These licenses will naturally expire over time, but we still want them to be able to test
license.Expires = DateTime.MaxValue;
GenerateLicenseFileJsonString();
var organization = OrganizationLicenseFileFixtures.OrganizationFactory();
var globalSettings = Substitute.For<IGlobalSettings>();
globalSettings.Installation.Returns(new GlobalSettings.InstallationSettings
@ -69,7 +68,6 @@ public class OrganizationLicenseTests
var license = new OrganizationLicense(organization, null, installationId, licensingService);
var result = JsonSerializer.Serialize(license, JsonHelpers.Indented).Replace("\"", "'");
Console.Out.WriteLine(result);
// Put a break after this line, then copy and paste the value of `result` into OrganizationLicenseFileFixtures
}
}