diff --git a/src/IbanNet.FluentValidation/IbanNet.FluentValidation.csproj b/src/IbanNet.FluentValidation/IbanNet.FluentValidation.csproj index d4758f2..1430010 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 6224de6..a1e57a1 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 ef69582..2a66a58 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 +}