Skip to content

Commit

Permalink
chore: fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tnotheis committed Oct 10, 2024
1 parent ef7236a commit 1ba9c5b
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@ public void Happy_Path_with_optional_parameters()
// Act
var validationResult = validator.TestValidate(
new CreateRelationshipTemplateCommand
{ ExpiresAt = DateTime.UtcNow.AddDays(1), MaxNumberOfAllocations = 1, Content = [1], ForIdentity = TestDataGenerator.CreateRandomIdentityAddress(), Password = [1] });
{
ExpiresAt = DateTime.UtcNow.AddDays(1),
MaxNumberOfAllocations = 1,
Content = [1],
ForIdentity = TestDataGenerator.CreateRandomIdentityAddress(), Password = [1]
});

// Assert
validationResult.ShouldNotHaveAnyValidationErrors();
Expand Down

0 comments on commit 1ba9c5b

Please sign in to comment.