Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer <jacob@gitlab.com>2016-06-08 12:42:25 +0300
committerJacob Vosmaer <jacob@gitlab.com>2016-06-08 12:42:25 +0300
commitdf62cbd917f85f85d2e3371da2eccf724d5d94e0 (patch)
tree46b34af56665221ff670800de0d94e94b5db4fc5 /spec/requests
parentbebe110dff812bd08fa7042e92cb8ae3c79e3bb8 (diff)
Add parentheses
Diffstat (limited to 'spec/requests')
-rw-r--r--spec/requests/git_http_spec.rb8
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