Skip to content

Commit

Permalink
fix var name
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Wiedemann <[email protected]>
  • Loading branch information
wistefan committed Jul 31, 2024
1 parent d76dbdb commit 7c3c8d3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,9 @@ public void testGetCredentialOfferWithABrokenNote() throws Throwable {
.run((session -> {
AppAuthManager.BearerTokenAuthenticator authenticator = new AppAuthManager.BearerTokenAuthenticator(session);
authenticator.setTokenString(token);
String nonce = prepareSessionCode(session, authenticator, "invalidNote");
String sessionCode = prepareSessionCode(session, authenticator, "invalidNote");
OID4VCIssuerEndpoint issuerEndpoint = prepareIssuerEndpoint(session, authenticator);
issuerEndpoint.getCredentialOffer(nonce);
issuerEndpoint.getCredentialOffer(sessionCode);
}));
});
}
Expand Down

0 comments on commit 7c3c8d3

Please sign in to comment.