Skip to content

Commit

Permalink
P4ADEV-1824 modified city, zipCod and country
Browse files Browse the repository at this point in the history
  • Loading branch information
RiccardoGiuliani committed Dec 18, 2024
1 parent bc618de commit 676777a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ private List<TipoInfoSoggettoEnte> generateInfoSubject(String idAnpr) {
createTipoInfoSoggettoEnte("lastName", faker.name().lastName(), "Last name of the subject", faker),
createTipoInfoSoggettoEnte("dateOfBirth", "", "Date of birth of the subject", faker),
createTipoInfoSoggettoEnte("street", faker.address().streetAddress(), "Street address of the subject", faker),
createTipoInfoSoggettoEnte("city", faker.address().city(), "City of residence of the subject", faker),
createTipoInfoSoggettoEnte("postalCode", faker.address().zipCode(), "Postal code of the subject", faker),
createTipoInfoSoggettoEnte("country", faker.address().country(), "Country of residence of the subject", faker)
createTipoInfoSoggettoEnte("city", "Roma", "City of residence of the subject", faker),
createTipoInfoSoggettoEnte("postalCode", "00100", "Postal code of the subject", faker),
createTipoInfoSoggettoEnte("country", "Italia", "Country of residence of the subject", faker)
);
}

Expand Down

0 comments on commit 676777a

Please sign in to comment.