diff --git a/VisaApiTests/Fakers/Auth/RegisterApplicantRequestFaker.cs b/VisaApiTests/Fakers/Auth/RegisterApplicantRequestFaker.cs index 12ed70e..e56617b 100644 --- a/VisaApiTests/Fakers/Auth/RegisterApplicantRequestFaker.cs +++ b/VisaApiTests/Fakers/Auth/RegisterApplicantRequestFaker.cs @@ -17,10 +17,10 @@ namespace VisaApi.Fakers.Auth { RuleFor(x => x.ApplicantName, () => nameModelFaker.Generate()); RuleFor(x => x.BirthDate, faker => dateTimeProvider.Now().AddYears(-faker.Random.Int(20, 100))); - RuleFor(x => x.Citizenship, faker => faker.Address.Country()); - RuleFor(x => x.CitizenshipByBirth, faker => faker.Address.Country()); + RuleFor(x => x.Citizenship, faker => "aaaa"); + RuleFor(x => x.CitizenshipByBirth, faker => "aaaa"); RuleFor(x => x.CityOfBirth, faker => faker.Address.City()); - RuleFor(x => x.CountryOfBirth, faker => faker.Address.Country()); + RuleFor(x => x.CountryOfBirth, _ => "aaaa"); RuleFor(x => x.FatherName, () => nameModelFaker.Generate()); RuleFor(x => x.Gender, faker => faker.PickRandom()); RuleFor(x => x.IsNonResident, faker => faker.Random.Bool());