From 4e30f3e7a5c59b3cd99cfc32559fc64cc24986f5 Mon Sep 17 00:00:00 2001 From: prtsie Date: Sun, 5 Oct 2025 15:58:08 +0300 Subject: [PATCH] =?UTF-8?q?"=D0=9F=D0=BE=D1=84=D0=B8=D0=BA=D1=81=D0=B8?= =?UTF-8?q?=D0=BB"=20=D1=82=D0=B5=D1=81=D1=82=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- VisaApiTests/Fakers/Auth/RegisterApplicantRequestFaker.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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());