-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: correct intent url protocol (#50)
* fix: correct intent url protocol * fix intent url * test: update output --------- Co-authored-by: Andrea D'Intino <[email protected]> Co-authored-by: matteo-cristino <[email protected]>
- Loading branch information
1 parent
0781730
commit fc46fb3
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,7 +66,7 @@ load ./bats_utils | |
data_toc="{\"request_uri\": \"${request_uri}\", \"client_id\": \"${client_id}\"}" | ||
curl -X POST $ru_to_toc -d ''"$(echo $data_toc)"'' 1> $TMP/out | ||
save_tmp_output ru_to_toc.output.json | ||
assert_output '{"credential_configuration_id":"test_credential"}' | ||
assert_output '{"auth_details":[{"credential_configuration_id":"test_credential","locations":["http://localhost:3001/credential_issuer"],"type":"openid_credential","claims":[]}],"credential_configuration_id":"test_credential"}' | ||
cci=$(jq_extract_raw "credential_configuration_id" ru_to_toc.output.json) | ||
echo '{"email": "[email protected]", "password": "password"}' > $TMP/out | ||
save_tmp_output form.data.json | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,5 +35,5 @@ | |
"8", | ||
"9" | ||
], | ||
"intent-url": "DIDroom4VP://?" | ||
} | ||
"intent-url": "didroom4vp://?" | ||
} |