Skip to content

Commit 687f754

Browse files
Tino KlijnDotNet2Web
authored andcommitted
some code styling
1 parent 42e9bb8 commit 687f754

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CsvCore.Specs/CsvCoreReaderSpecs.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -590,10 +590,10 @@ public void Should_Validate_The_Input_When_Reading_The_Csv_File()
590590
invalid1.BirthDate = "01-01-2023T00:00:00";
591591

592592
var invalid2 = new Faker<CsvContentModel>()
593-
.RuleFor(person => person.Name, faker => null)
593+
.RuleFor(person => person.Name, _ => null)
594594
.RuleFor(person => person.Surname, faker => faker.Person.LastName)
595595
.RuleFor(person => person.BirthDate, faker => faker.Person.DateOfBirth.ToShortDateString())
596-
.RuleFor(person => person.Email, faker => null)
596+
.RuleFor(person => person.Email, _ => null)
597597
.Generate();
598598

599599
var anotherSetValidData = new Faker<CsvContentModel>()

0 commit comments

Comments
 (0)