fix: Fix unit tests error

This commit is contained in:
Pc 2023-06-04 03:58:05 +03:30
parent 66cd7c54be
commit 9e27099ef2

View File

@ -10,5 +10,6 @@ public class FakeCreateAircraftCommand : AutoFaker<CreateAircraft>
public FakeCreateAircraftCommand()
{
RuleFor(r => r.Id, _ => NewId.NextGuid());
RuleFor(r => r.ManufacturingYear, _ => 2000);
}
}