Skip to content

Commit

Permalink
P4ADEV-24P4ADEV-248-creation-api-get-token-selfcare tests
Browse files Browse the repository at this point in the history
  • Loading branch information
LarissaASLeite committed May 10, 2024
1 parent bf89164 commit 53b8193
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 1 addition & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,10 @@ test {
jacocoTestReport {
dependsOn test
reports {
html.enabled = true
xml.enabled = true
csv.enabled = false
xml.required = true
}
}


processResources {
expand(project.properties)
exclude 'logback-spring.xml'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,6 @@ public void authToken(String token) {
if (!(data.get("aud").equals(audience) && data.get("iss").equals(issuer))){
throw new InvalidTokenException("Invalid audience or issuer in the token");
}
log.info("Token validated successfully");
}
}

0 comments on commit 53b8193

Please sign in to comment.