summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer <contact@jacobvosmaer.nl>2016-04-06 17:23:16 +0200
committerJacob Vosmaer <contact@jacobvosmaer.nl>2016-04-06 17:23:16 +0200
commitac4d3dc5ccba32e026250ab48fe7f29bcf4ddd97 (patch)
treebd68560b6475a13cb9cd454015f4fc14f98407ec
parent5fe06d7365f5552904add8027309d6216954793e (diff)
downloadgitlab-ce-ac4d3dc5ccba32e026250ab48fe7f29bcf4ddd97.tar.gz
Rubocop
-rw-r--r--spec/requests/git_http_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/requests/git_http_spec.rb b/spec/requests/git_http_spec.rb
index 1fa14cadc0f..5d41d973083 100644
--- a/spec/requests/git_http_spec.rb
+++ b/spec/requests/git_http_spec.rb
@@ -252,7 +252,7 @@ describe 'Git HTTP requests', lib: true do
end
def download(project, user: nil, password: nil)
- args = [project, {user: user, password: password}]
+ args = [project, { user: user, password: password }]
clone_get *args
yield response
@@ -262,7 +262,7 @@ describe 'Git HTTP requests', lib: true do
end
def upload(project, user: nil, password: nil)
- args = [project, {user: user, password: password}]
+ args = [project, { user: user, password: password }]
push_get *args
yield response