summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro Rodríguez <alejorro70@gmail.com>2016-06-30 11:52:38 -0400
committerAlejandro Rodríguez <alejorro70@gmail.com>2016-06-30 11:52:38 -0400
commite8a8b0b818c96934ad1f2326053efa4d31c8850e (patch)
treee70463372c783184fe39f21d4f1690d382c73a75
parentd9885160ba3be1f62ac61d2f65a4d9e7ab474668 (diff)
downloadgitlab-ce-e8a8b0b818c96934ad1f2326053efa4d31c8850e.tar.gz
Remove hardcoded gitlab-shell version in test env now that the required tag is published
-rw-r--r--spec/support/test_env.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/spec/support/test_env.rb b/spec/support/test_env.rb
index be5331e4770..9f9ef20f99b 100644
--- a/spec/support/test_env.rb
+++ b/spec/support/test_env.rb
@@ -81,8 +81,7 @@ module TestEnv
def setup_gitlab_shell
unless File.directory?(Gitlab.config.gitlab_shell.path)
- # TODO: Remove `[shards]` when gitlab-shell v3.1.0 is published
- `rake gitlab:shell:install[shards]`
+ `rake gitlab:shell:install`
end
end