Skip to content

Commit

Permalink
feat(Gate) - Fix test values
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsilva-CGI committed Oct 23, 2023
1 parent 422c435 commit 36645b2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,16 +144,16 @@ object CommonValues {
hasChanged = true,
legalName = nameParts.joinToString(" "),
legalShortName = shortName,
identifiers = identifiers.map { it.toLegalEntityIdentifierDto() },
identifiers = identifiers.mapNotNull { it.toLegalEntityIdentifierDto() },
legalForm = legalForm,
states = states.map { it.toLegalEntityState() },
states = states.mapNotNull { it.toLegalEntityState() },
classifications = classifications.map { it.toBusinessPartnerClassificationDto() }
)

val expectedSiteDto = SiteDto(
hasChanged = true,
name = nameParts.joinToString(" "),
states = states.map { it.toSiteState() },
states = states.mapNotNull { it.toSiteState() },
)

val expectedLogisticAddressDto = LogisticAddressDto(
Expand Down

0 comments on commit 36645b2

Please sign in to comment.