diff --git a/spec/httparty/request_spec.rb b/spec/httparty/request_spec.rb index 9b1b01e..91e7026 100644 --- a/spec/httparty/request_spec.rb +++ b/spec/httparty/request_spec.rb @@ -99,7 +99,7 @@ describe HTTParty::Request do response = stub_response "Content" response.initialize_http_header("key" => "value") - @request.perform.headers.should eql({ "key" => ["value"] }) + @request.perform.headers.should == { "key" => ["value"] } end describe 'with non-200 responses' do