Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix OpenSSL::PKey::EC public_key handing in tests #427

Merged
merged 1 commit into from
Jun 28, 2021
Merged
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
Fix OpenSSL::PKey::EC public_key handing in tests
  • Loading branch information
anakinj committed Jun 23, 2021
commit 8067cec33f769df75aa7e41463071a078282544a
2 changes: 1 addition & 1 deletion spec/jwk/ec_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
end

context 'when a keypair with only public key is given' do
let(:keypair) { ec_key.tap { |x| x.private_key = nil } }
let(:keypair) { OpenSSL::PKey::EC.new(ec_key.public_key.group).tap { |ec| ec.public_key = ec_key.public_key } }
it 'creates an instance of the class' do
expect(subject).to be_a described_class
expect(subject.private?).to eq false
Expand Down