Skip to content
Snippets Groups Projects
Commit df62cbd9 authored by Jacob Vosmaer (GitLab)'s avatar Jacob Vosmaer (GitLab)
Browse files

Add parentheses

parent bebe110d
Branches
Tags
No related merge requests found
Loading
Loading
@@ -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
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment