Skip to content

Commit

Permalink
PYIC-7146: Run spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
DanCorderIPV committed Jan 6, 2025
1 parent 214b744 commit 32e1ad5
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,9 @@ public RequestResponsePact validRequestReturnsIssuedInternationalAddressCredenti
.status(200)
.body(
new PactJwtIgnoreSignatureBodyBuilder(
VALID_VC_HEADER, VALID_VC_INTERNATIONAL_ADDRESS_BODY, VALID_VC_INTERNATIONAL_ADDRESS_SIGNATURE))
VALID_VC_HEADER,
VALID_VC_INTERNATIONAL_ADDRESS_BODY,
VALID_VC_INTERNATIONAL_ADDRESS_SIGNATURE))
.toPact();
}

Expand Down Expand Up @@ -320,9 +322,9 @@ void fetchVerifiableCredential_whenCalledAgainstAddressCri_retrievesAnInternatio
JsonNode addressNode = credentialSubject.get("address").get(0);

// Just check the bits specific to international addresses
assertEquals("North Kivu", addressNode.get("addressRegion").asText());
assertEquals(
"CD", addressNode.get("addressCountry").asText());
"North Kivu", addressNode.get("addressRegion").asText());
assertEquals("CD", addressNode.get("addressCountry").asText());

} catch (VerifiableCredentialException | JsonProcessingException e) {
throw new RuntimeException(e);
Expand Down

0 comments on commit 32e1ad5

Please sign in to comment.