Skip to content

Commit 1fb22b6

Browse files
committed
fix: correct request url in http client
1 parent d4792f3 commit 1fb22b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/pact/hal/http_client.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def post href, body = nil, headers = {}
2828
end
2929

3030
def create_request uri, http_method, body = nil, headers = {}
31-
request = Net::HTTP.const_get(http_method).new(uri.to_s)
31+
request = Net::HTTP.const_get(http_method).new(uri.request_uri)
3232
request['Content-Type'] = "application/json" if ['Post', 'Put', 'Patch'].include?(http_method)
3333
request['Accept'] = "application/hal+json"
3434
headers.each do | key, value |

0 commit comments

Comments
 (0)