fix loading of expected people

This commit is contained in:
Julien Fastré 2021-08-17 17:12:13 +02:00
parent b88c01365d
commit 8a8ec31163

View File

@ -372,6 +372,7 @@ class LoadPeople extends AbstractFixture implements OrderedFixtureInterface, Con
'firstName' => "Gérard",
'birthdate' => "1948-12-27",
'placeOfBirth' => "Châteauroux",
'nationality' => 'RU',
'gender' => Person::MALE_GENDER,
'center' => 'Center A',
'accompanyingPeriods' => [
@ -392,19 +393,19 @@ class LoadPeople extends AbstractFixture implements OrderedFixtureInterface, Con
),
array(
//to have a person with same firstname as Gérard Depardieu
'LastName' => "Depardieu",
'FirstName' => "Jean",
'Birthdate' => "1960-10-12",
'CountryOfBirth' => 'FR',
'Nationality' => 'FR',
'lastName' => "Depardieu",
'firstName' => "Jean",
'birthdate' => "1960-10-12",
'countryOfBirth' => 'FR',
'nationality' => 'FR',
'center' => 'Center A',
'maritalStatus' => 'ms_divorce'
),
array(
//to have a person with same birthdate of Gérard Depardieu
'LastName' => 'Van Snick',
'FirstName' => 'Bart',
'Birthdate' => '1948-12-27',
'lastName' => 'Van Snick',
'firstName' => 'Bart',
'birthdate' => '1948-12-27',
'center' => 'Center A',
'maritalStatus' => 'ms_legalco'
),