Add parentheses

This commit is contained in:
Jacob Vosmaer 2016-06-08 11:42:25 +02:00
parent bebe110dff
commit df62cbd917
1 changed files with 4 additions and 4 deletions

View File

@ -287,20 +287,20 @@ describe 'Git HTTP requests', lib: true do
def download(project, user: nil, password: nil)
args = [project, { user: user, password: password }]
clone_get *args
clone_get(*args)
yield response
clone_post *args
clone_post(*args)
yield response
end
def upload(project, user: nil, password: nil)
args = [project, { user: user, password: password }]
push_get *args
push_get(*args)
yield response
push_post *args
push_post(*args)
yield response
end