Skip to content

Commit

Permalink
test fix and correct docker image for e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
woutslakhorst committed Nov 23, 2023
1 parent e5faffa commit 9c595d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions e2e-tests/oauth-flow/openid4vp/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.7"
services:
nodeA-backend:
image: "${IMAGE_NODE_A:-nutsfoundation/nuts-node:latest}"
image: "${IMAGE_NODE_A:-nutsfoundation/nuts-node:master}"
ports:
- "11323:1323"
environment:
Expand All @@ -25,7 +25,7 @@ services:
- "../../tls-certs/truststore.pem:/etc/nginx/ssl/truststore.pem:ro"
- "./node-A/html:/etc/nginx/html:ro"
nodeB:
image: "${IMAGE_NODE_B:-nutsfoundation/nuts-node:latest}"
image: "${IMAGE_NODE_B:-nutsfoundation/nuts-node:master}"
ports:
- "21323:1323"
environment:
Expand Down
2 changes: 1 addition & 1 deletion vcr/holder/wallet_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ func TestWallet_BuildPresentation(t *testing.T) {

result, err := w.BuildPresentation(ctx, []vc.VerifiableCredential{testCredential}, PresentationOptions{Format: "paper"}, &testDID, true)

assert.EqualError(t, err, "unsupported presentation proof format")
assert.EqualError(t, err, "unsupported presentation proof format: paper")
assert.Nil(t, result)
})
})
Expand Down

0 comments on commit 9c595d6

Please sign in to comment.