From ecd9645deed40e41d709c9486fb8e80d5fcbe81f Mon Sep 17 00:00:00 2001 From: skwasjer <11424653+skwasjer@users.noreply.github.com> Date: Fri, 4 Oct 2024 23:29:36 +0200 Subject: [PATCH] chore(deps): bump FluentValidation to 11.9.0 --- src/IbanNet.FluentValidation/IbanNet.FluentValidation.csproj | 2 +- .../IbanNet.FluentValidation.Tests.csproj | 2 +- test/IbanNet.FluentValidation.Tests/IntegrationTests.cs | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/IbanNet.FluentValidation/IbanNet.FluentValidation.csproj b/src/IbanNet.FluentValidation/IbanNet.FluentValidation.csproj index d4758f26..1430010c 100644 --- a/src/IbanNet.FluentValidation/IbanNet.FluentValidation.csproj +++ b/src/IbanNet.FluentValidation/IbanNet.FluentValidation.csproj @@ -21,7 +21,7 @@ - + diff --git a/test/IbanNet.FluentValidation.Tests/IbanNet.FluentValidation.Tests.csproj b/test/IbanNet.FluentValidation.Tests/IbanNet.FluentValidation.Tests.csproj index 6224de6f..a1e57a1e 100644 --- a/test/IbanNet.FluentValidation.Tests/IbanNet.FluentValidation.Tests.csproj +++ b/test/IbanNet.FluentValidation.Tests/IbanNet.FluentValidation.Tests.csproj @@ -9,7 +9,7 @@ - + diff --git a/test/IbanNet.FluentValidation.Tests/IntegrationTests.cs b/test/IbanNet.FluentValidation.Tests/IntegrationTests.cs index ef69582f..2a66a58c 100644 --- a/test/IbanNet.FluentValidation.Tests/IntegrationTests.cs +++ b/test/IbanNet.FluentValidation.Tests/IntegrationTests.cs @@ -33,6 +33,7 @@ ErrorResult expectedError FormattedMessagePlaceholderValues = new Dictionary { { "PropertyName", expectedFormattedPropertyName }, + { "PropertyPath", nameof(_testModel.BankAccountNumber) }, { "PropertyValue", attemptedIbanValue }, { "Error", expectedError } } @@ -92,4 +93,4 @@ public TestModelValidator(IIbanValidator ibanValidator, bool strict) RuleFor(x => x.BankAccountNumber).Iban(ibanValidator, strict); } } -} \ No newline at end of file +}