Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/presenters/openid_connect_user_info_presenter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def x509_presented
)
x509_data.presented
else
x509_data.presented.raw
!!x509_data.presented.raw
end
end

Expand Down
2 changes: 1 addition & 1 deletion spec/presenters/openid_connect_user_info_presenter_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
aggregate_failures do
expect(user_info[:x509_subject]).to be_blank
expect(user_info[:x509_issuer]).to be_blank
expect(user_info[:x509_presented]).to be_blank
expect(user_info[:x509_presented]).to be false
end
end
end
Expand Down