From d1c376d40c6b314d8bf192e39cc70c5ba447bad0 Mon Sep 17 00:00:00 2001 From: Greg Gershman Date: Mon, 14 Apr 2014 17:31:09 -0400 Subject: [PATCH] Update description in spec. --- spec/httparty/connection_adapter_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/httparty/connection_adapter_spec.rb b/spec/httparty/connection_adapter_spec.rb index acedb1f..fa94857 100644 --- a/spec/httparty/connection_adapter_spec.rb +++ b/spec/httparty/connection_adapter_spec.rb @@ -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