Use persons' first names for mock data to reduce chance of conflicts
Some checks failed
continuous-integration/drone/push Build is failing

Vehicle models seems to have a high enough probability that it sometimes
fails
This commit is contained in:
2025-06-24 19:43:44 +02:00
parent 5da1e2fd75
commit 559804765b

View File

@@ -9,11 +9,11 @@ internal class CarFaker
internal CreateCar.Request CreateCarRequest()
{
return new CreateCar.Request(_faker.Vehicle.Model());
return new CreateCar.Request(_faker.Person.FirstName);
}
internal UpdateCar.Request UpdateCarRequest()
{
return new UpdateCar.Request(_faker.Vehicle.Model());
return new UpdateCar.Request(_faker.Person.FirstName);
}
}