diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2021-01-25 12:09:07 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2021-01-25 12:09:07 +0000 |
commit | 6bc190088ee629fca757b135d25e74cc09c9cb9d (patch) | |
tree | e9086246fb1d3d840a2eeee7d42399ec5303c189 /spec/tasks | |
parent | b9c00e60c46522bdafd67c4680cf8bfd18269959 (diff) | |
download | gitlab-ce-6bc190088ee629fca757b135d25e74cc09c9cb9d.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/tasks')
-rw-r--r-- | spec/tasks/gitlab/cleanup_rake_spec.rb | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/spec/tasks/gitlab/cleanup_rake_spec.rb b/spec/tasks/gitlab/cleanup_rake_spec.rb index dc460611169..08d8651dcef 100644 --- a/spec/tasks/gitlab/cleanup_rake_spec.rb +++ b/spec/tasks/gitlab/cleanup_rake_spec.rb @@ -109,8 +109,7 @@ RSpec.describe 'gitlab:cleanup rake tasks' do it 'passes dry_run correctly' do expect(Gitlab::Cleanup::OrphanJobArtifactFiles) .to receive(:new) - .with(limit: anything, - dry_run: false, + .with(dry_run: false, niceness: anything, logger: anything) .and_call_original @@ -145,7 +144,6 @@ RSpec.describe 'gitlab:cleanup rake tasks' do expect(Gitlab::Cleanup::OrphanLfsFileReferences) .to receive(:new) .with(project, - limit: anything, dry_run: false, logger: anything) .and_call_original @@ -153,24 +151,6 @@ RSpec.describe 'gitlab:cleanup rake tasks' do rake_task end end - - context 'with LIMIT set to 100' do - before do - stub_env('LIMIT', '100') - end - - it 'passes limit as integer' do - expect(Gitlab::Cleanup::OrphanLfsFileReferences) - .to receive(:new) - .with(project, - limit: 100, - dry_run: true, - logger: anything) - .and_call_original - - rake_task - end - end end describe 'gitlab:cleanup:orphan_lfs_files' do |