Skip to content

Commit

Permalink
fix case of percent encodings
Browse files Browse the repository at this point in the history
  • Loading branch information
mkdynamic committed Apr 28, 2012
1 parent 251ee14 commit 8b90057
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/omniauth/strategies/oauth_spec.rb
Expand Up @@ -58,7 +58,7 @@ def session
it 'should pass request_params to get_request_token' do
get '/auth/example.org_with_request_params'
WebMock.should have_requested(:post, 'https://api.example.org/oauth/request_token').
with {|req| req.body == "scope=http%3a%2f%2ffoobar.example.org" }
with {|req| req.body == "scope=http%3A%2F%2Ffoobar.example.org" }
end
end

Expand Down

0 comments on commit 8b90057

Please sign in to comment.