Skip to content

Commit

Permalink
chore(deps): bump FluentValidation to 11.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
skwasjer committed Oct 4, 2024
1 parent b2e1144 commit ecd9645
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="FluentValidation" Version="11.5.1" />
<PackageReference Include="FluentValidation" Version="11.9.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentValidation" Version="11.5.1" />
<PackageReference Include="FluentValidation" Version="11.10.0" />
</ItemGroup>

<ItemGroup>
Expand Down
3 changes: 2 additions & 1 deletion test/IbanNet.FluentValidation.Tests/IntegrationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ ErrorResult expectedError
FormattedMessagePlaceholderValues = new Dictionary<string, object>
{
{ "PropertyName", expectedFormattedPropertyName },
{ "PropertyPath", nameof(_testModel.BankAccountNumber) },
{ "PropertyValue", attemptedIbanValue },
{ "Error", expectedError }
}
Expand Down Expand Up @@ -92,4 +93,4 @@ public TestModelValidator(IIbanValidator ibanValidator, bool strict)
RuleFor(x => x.BankAccountNumber).Iban(ibanValidator, strict);
}
}
}
}

0 comments on commit ecd9645

Please sign in to comment.