From cf5826e3549db43ed88b1cc1f2d95fe5baa2abcd Mon Sep 17 00:00:00 2001 From: Lee Surprenant Date: Wed, 1 Sep 2021 14:22:38 -0400 Subject: [PATCH] Fix header field name in Auth-18 description --- generator/bdt/bdt-structure.json | 2 +- lib/modules/bdt/authorization_sequence.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/generator/bdt/bdt-structure.json b/generator/bdt/bdt-structure.json index eb2647b1d..f0f2382f0 100644 --- a/generator/bdt/bdt-structure.json +++ b/generator/bdt/bdt-structure.json @@ -189,7 +189,7 @@ { "id": "Auth-18", "name": "validates the jku token header", - "description": "When present, the `jky` authentication JWT header should match a value that the client supplied to the FHIR server at client registration time. This test attempts to authorize using `test-bad-jku` as `jky` header value and expects that to produce an error.", + "description": "When present, the `jku` authentication JWT header should match a value that the client supplied to the FHIR server at client registration time. This test attempts to authorize using `test-bad-jku` as `jku` header value and expects that to produce an error.", "type": "test", "path": "0.3.16" }, diff --git a/lib/modules/bdt/authorization_sequence.rb b/lib/modules/bdt/authorization_sequence.rb index f0eb54221..88dfe4757 100644 --- a/lib/modules/bdt/authorization_sequence.rb +++ b/lib/modules/bdt/authorization_sequence.rb @@ -289,7 +289,7 @@ class BDTAuthSequence < BDTBase id '18' link 'http://hl7.org/fhir/uv/bulkdata/' description %( - When present, the `jky` authentication JWT header should match a value that the client supplied to the FHIR server at client registration time. This test attempts to authorize using `test-bad-jku` as `jky` header value and expects that to produce an error. + When present, the `jku` authentication JWT header should match a value that the client supplied to the FHIR server at client registration time. This test attempts to authorize using `test-bad-jku` as `jku` header value and expects that to produce an error. ) versions :r4 end