Skip to content

Commit

Permalink
Merge pull request #70 from catenax-ng/fix/gate/type-match
Browse files Browse the repository at this point in the history
Fix/gate/type match
  • Loading branch information
nicoprow authored Mar 13, 2023
2 parents aeb6885 + 68ea08f commit eb5e990
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/),

## [3.1.1] - tbd

### Fixed

- BPDM Gate: internal server error when invoking the POST business-partners/type-match endpoint

## [3.1.0] - 2023-03-08

### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ data class ReferenceDataLookupResponseSaas(
)

data class BusinessPartnerLookupMatchSaas(
val saasId: String,
val dataSource: String,
val matchingProfile: MatchingProfileSaas
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ class BusinessPartnerControllerIT @Autowired constructor(
1, 1, 0, 1,
listOf(
BusinessPartnerLookupMatchSaas(
"0", "0",
"0",
MatchingProfileSaas(
MatchingScoresSaas(MatchingScoreSaas(0.5f), MatchingScoreSaas(0.5f), MatchingScoreSaas(overallScore))
)
Expand Down

0 comments on commit eb5e990

Please sign in to comment.