1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 23:52:50 -05:00

Re-ordered parameters per PR suggestion

This commit is contained in:
Brant DeBow
2025-06-27 08:45:43 -04:00
parent ec4bc194c6
commit 46745ab1d3
2 changed files with 2 additions and 2 deletions

View File

@ -139,7 +139,7 @@ public class OrganizationIntegrationRequestModelTests
var model = new OrganizationIntegrationRequestModel
{
Type = IntegrationType.Hec,
Configuration = JsonSerializer.Serialize(new HecIntegration("Bearer", Token: "Token", Uri: new Uri("http://localhost")))
Configuration = JsonSerializer.Serialize(new HecIntegration(Uri: new Uri("http://localhost"), Scheme: "Bearer", Token: "Token"))
};
var results = model.Validate(new ValidationContext(model)).ToList();