Commit 19cd1ba7 authored by Stan Hu's avatar Stan Hu

Fix identation in lib/bitbucket_server/connection.rb

parent 8ac00193
......@@ -27,9 +27,9 @@ module BitbucketServer
def post(path, body)
response = Gitlab::HTTP.post(build_url(path),
basic_auth: auth,
headers: post_headers,
body: body)
basic_auth: auth,
headers: post_headers,
body: body)
check_errors!(response)
......@@ -44,9 +44,9 @@ module BitbucketServer
url = delete_url(resource, path)
response = Gitlab::HTTP.delete(url,
basic_auth: auth,
headers: post_headers,
body: body)
basic_auth: auth,
headers: post_headers,
body: body)
check_errors!(response)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment