From ab48a131bad3d555cd98c119fdbdf84068f30fc0 Mon Sep 17 00:00:00 2001 From: Meysam Hadeli <35596795+meysamhadeli@users.noreply.github.com> Date: Fri, 2 Jun 2023 17:02:17 +0330 Subject: [PATCH] Update FakeCreateAircraftCommand.cs --- .../tests/IntegrationTest/Fakes/FakeCreateAircraftCommand.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Services/Flight/tests/IntegrationTest/Fakes/FakeCreateAircraftCommand.cs b/src/Services/Flight/tests/IntegrationTest/Fakes/FakeCreateAircraftCommand.cs index 530326f..646ced6 100644 --- a/src/Services/Flight/tests/IntegrationTest/Fakes/FakeCreateAircraftCommand.cs +++ b/src/Services/Flight/tests/IntegrationTest/Fakes/FakeCreateAircraftCommand.cs @@ -1,4 +1,4 @@ -using AutoBogus; +using AutoBogus; namespace Integration.Test.Fakes; @@ -10,5 +10,6 @@ public class FakeCreateAircraftCommand : AutoFaker public FakeCreateAircraftCommand() { RuleFor(r => r.Id, _ => NewId.NextGuid()); + RuleFor(r => r.ManufacturingYear, _ => 2000); } }