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
path: root/spec
diff options
context:
space:
mode:
authorFrancisco Javier López <fjlopez@gitlab.com>2018-06-06 22:07:31 +0300
committerFrancisco Javier López <fjlopez@gitlab.com>2018-06-06 22:55:32 +0300
commit86d39016a26f73e82437d38fcf723677b97c1c8d (patch)
treedb822bc8c4c45b58b639be5862ac113ac432ad52 /spec
parentfddcfae6d8cc3790fe100584f8d7c09e014b01e1 (diff)
Moving rev-list lfs options to Lfschanges
Diffstat (limited to 'spec')
-rw-r--r--spec/lib/gitlab/git/rev_list_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/lib/gitlab/git/rev_list_spec.rb b/spec/lib/gitlab/git/rev_list_spec.rb
index 70e90659b0f..95dc47e2a00 100644
--- a/spec/lib/gitlab/git/rev_list_spec.rb
+++ b/spec/lib/gitlab/git/rev_list_spec.rb
@@ -88,7 +88,7 @@ describe Gitlab::Git::RevList do
context '#all_objects' do
it 'fetches list of all pushed objects using rev-list' do
- stub_popen_rev_list('--all', '--objects', '--filter=blob:limit=200', output: "sha1\nsha2")
+ stub_popen_rev_list('--all', '--objects', output: "sha1\nsha2")
expect { |b| rev_list.all_objects(&b) }.to yield_with_args(%w[sha1 sha2])
end