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

Fixed one failing spec.

This commit is contained in:
John Nunemaker 2009-01-29 04:16:39 -05:00
parent 5c42a98397
commit 424e752f6c

View file

@ -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