diff options
author | Jacob Vosmaer <jacob@gitlab.com> | 2016-06-08 11:42:25 +0200 |
---|---|---|
committer | Jacob Vosmaer <jacob@gitlab.com> | 2016-06-08 11:42:25 +0200 |
commit | df62cbd917f85f85d2e3371da2eccf724d5d94e0 (patch) | |
tree | 46b34af56665221ff670800de0d94e94b5db4fc5 /spec | |
parent | bebe110dff812bd08fa7042e92cb8ae3c79e3bb8 (diff) | |
download | gitlab-ce-df62cbd917f85f85d2e3371da2eccf724d5d94e0.tar.gz |
Add parentheses
Diffstat (limited to 'spec')
-rw-r--r-- | spec/requests/git_http_spec.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/requests/git_http_spec.rb b/spec/requests/git_http_spec.rb index 14d126480a3..594a60a4340 100644 --- a/spec/requests/git_http_spec.rb +++ b/spec/requests/git_http_spec.rb @@ -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 |