1
0
Fork 0
mirror of https://github.com/jnunemaker/httparty synced 2023-03-27 23:23:07 -04:00

Update description in spec.

This commit is contained in:
Greg Gershman 2014-04-14 17:31:09 -04:00
parent 1b6cfbc7ec
commit d1c376d40c

View file

@ -288,7 +288,7 @@ describe HTTParty::ConnectionAdapter do
subject.verify_mode.should == OpenSSL::SSL::VERIFY_PEER
end
context "when options include verify=false" do
context "when options include verify_peer=false" do
let(:options) { {:pem => pem, :pem_password => "password", :verify_peer => false} }
it "should not verify the certificate" do
@ -339,7 +339,7 @@ describe HTTParty::ConnectionAdapter do
subject.verify_mode.should == OpenSSL::SSL::VERIFY_PEER
end
context "when options include verify=false" do
context "when options include verify_peer=false" do
let(:options) { {:p12 => p12, :p12_password => "password", :verify_peer => false} }
it "should not verify the certificate" do