summaryrefslogtreecommitdiff
path: root/tests/authorization-endpoint-no-args.scm
diff options
context:
space:
mode:
authorVivien Kraus <vivien@planete-kraus.eu>2021-09-17 18:31:01 +0200
committerVivien Kraus <vivien@planete-kraus.eu>2021-09-21 22:25:03 +0200
commit55195e4659339f56036c2f98d06cfd59a0141514 (patch)
tree0e4853d1039021ac337b5879a9d3d89d05287dd5 /tests/authorization-endpoint-no-args.scm
parent6d70723f85635b23aa8b52bb5adfb3140d9029bd (diff)
JWK: the default signature algorithm "alg" is now a key parameter
Diffstat (limited to 'tests/authorization-endpoint-no-args.scm')
-rw-r--r--tests/authorization-endpoint-no-args.scm3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/authorization-endpoint-no-args.scm b/tests/authorization-endpoint-no-args.scm
index e996db3..a9661cd 100644
--- a/tests/authorization-endpoint-no-args.scm
+++ b/tests/authorization-endpoint-no-args.scm
@@ -29,7 +29,6 @@
(with-test-environment
"authorization-endpoint-no-args"
(lambda ()
- (define alg 'RS256)
(define key (generate-key #:n-size 2048))
(define subject (string->uri "https://authorization-endpoint-get-form.scm/profile/card#me"))
(define password "p4ssw0rd")
@@ -38,7 +37,7 @@
(exit 2))
(define endpoint
(make-authorization-endpoint
- subject password alg key validity
+ subject password key validity
#:http-get http-get))
(receive (response response-body)
(parameterize ((p:current-date 0))