Skip to content

Commit

Permalink
Fix Unit Test
Browse files Browse the repository at this point in the history
  • Loading branch information
f11h committed Mar 7, 2022
1 parent db34d1e commit 2e33053
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,9 @@ private Request dummyRequest() {
}

private String getHashData(TrustedIssuerDto trustedIssuerDto) {
return trustedIssuerDto.getCountry() + ";"
return trustedIssuerDto.getUuid() + ";"
+ trustedIssuerDto.getCountry() + ";"
+ trustedIssuerDto.getName() + ";"
+ trustedIssuerDto.getUrl() + ";"
+ trustedIssuerDto.getType().name() + ";";
}
Expand Down

0 comments on commit 2e33053

Please sign in to comment.