Skip to content

Commit

Permalink
chore(sdk): update to latest vcs (#660)
Browse files Browse the repository at this point in the history
chore: update to latest vcs.

Signed-off-by: Volodymyr Kubiv <[email protected]>
  • Loading branch information
vkubiv authored Nov 7, 2023
1 parent 217c700 commit c1096dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkg/models/issuer/metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
// Metadata represents metadata about an issuer as obtained from their .well-known OpenID configuration.
type Metadata struct {
CredentialIssuer string `json:"credential_issuer,omitempty"`
AuthorizationServer string `json:"authorization_server,omitempty"`
AuthorizationServer string `json:"authorization_endpoint,omitempty"`
CredentialEndpoint string `json:"credential_endpoint,omitempty"`
CredentialsSupported []SupportedCredential `json:"credentials_supported,omitempty"`
LocalizedIssuerDisplays []LocalizedIssuerDisplay `json:"display,omitempty"`
Expand Down
2 changes: 1 addition & 1 deletion pkg/openid4ci/issuerinitiatedinteraction_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ func TestIssuerInitiatedInteraction_CreateAuthorizationURL(t *testing.T) {
authorizationServerURL := fmt.Sprintf("%s/auth", server.URL)

issuerServerHandler.issuerMetadata = fmt.Sprintf(`{"credential_endpoint":"%s/credential", `+
`"authorization_server":"%s"}`,
`"authorization_endpoint":"%s"}`,
server.URL, authorizationServerURL)

t.Run("Not using any options", func(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion test/integration/fixtures/.env
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#

VC_REST_IMAGE=ghcr.io/trustbloc-cicd/vc-server
VC_REST_IMAGE_TAG=v1.3.1-snapshot-ea964d1
VC_REST_IMAGE_TAG=v1.5.1-snapshot-027f1bb


# Remote JSON-LD context provider
Expand Down

0 comments on commit c1096dd

Please sign in to comment.