Skip to content

Commit

Permalink
Merge pull request #426 from stevenwilkin/patch-1
Browse files Browse the repository at this point in the history
Remove ruby 1.9 hash syntax in spec
  • Loading branch information
rubiii committed Apr 5, 2013
2 parents 8b7acc5 + 995197a commit 5acd246
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/savon/options_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

it "ignores namespace identifier if it is nil" do
client = new_client(:endpoint => @server.url(:repeat), :namespace_identifier => nil)
response = client.call(:authenticate, message: {user: 'foo'})
response = client.call(:authenticate, :message => {:user => 'foo'})

expect(response.http.body).to include('xmlns="http://v1_0.ws.auth.order.example.com/"')
expect(response.http.body).to include("<authenticate><user>foo</user></authenticate>")
Expand Down

0 comments on commit 5acd246

Please sign in to comment.