Skip to content

Commit

Permalink
minor refactor, addressing review comments
Browse files Browse the repository at this point in the history
Signed-off-by: Vanessa Fotso <[email protected]>
  • Loading branch information
vanessuniq committed Dec 18, 2024
1 parent b4dc556 commit 8fe6645
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/smart_app_launch/openid_token_payload_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class OpenIDTokenPayloadTest < Inferno::Test
- `sub` must be a non-blank string not exceeding 255 characters in length
)

REQUIRED_CLAIMS = %w[iss sub aud exp iat].freeze
REQUIRED_CLAIMS = ['iss', 'sub', 'aud', 'exp', 'iat'].freeze

def required_claims
REQUIRED_CLAIMS.dup
Expand Down
2 changes: 1 addition & 1 deletion lib/smart_app_launch/token_introspection_request_group.rb
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class SMARTTokenIntrospectionRequestGroup < Inferno::TestGroup
body are returned in the response.
)

input :standalone_smart_auth_info, type: :auth_info, options: { mode: 'auth' }
input :standalone_smart_auth_info, type: :auth_info, options: { mode: 'access' }

output :active_token_introspection_response_body

Expand Down

0 comments on commit 8fe6645

Please sign in to comment.