We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4792f3 commit 1fb22b6Copy full SHA for 1fb22b6
lib/pact/hal/http_client.rb
@@ -28,7 +28,7 @@ def post href, body = nil, headers = {}
28
end
29
30
def create_request uri, http_method, body = nil, headers = {}
31
- request = Net::HTTP.const_get(http_method).new(uri.to_s)
+ request = Net::HTTP.const_get(http_method).new(uri.request_uri)
32
request['Content-Type'] = "application/json" if ['Post', 'Put', 'Patch'].include?(http_method)
33
request['Accept'] = "application/hal+json"
34
headers.each do | key, value |
0 commit comments