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

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorEvan Read <eread@gitlab.com>2022-06-06 07:00:59 +0300
committerEvan Read <eread@gitlab.com>2022-06-06 07:00:59 +0300
commit2f434e49b9f17b8fa3f5e2ae715b286d15cb9cb9 (patch)
tree4382c97a6762d96c9479f106dee99de10f465e8e /spec
parent17f0114aeda00f837e76ed321fd42712d3ac3318 (diff)
Fix RSpec/ImplicitSubject RuboCop offenses
Diffstat (limited to 'spec')
-rw-r--r--spec/gitlab/content_spec.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/spec/gitlab/content_spec.rb b/spec/gitlab/content_spec.rb
index 4f50b43b..c8538121 100644
--- a/spec/gitlab/content_spec.rb
+++ b/spec/gitlab/content_spec.rb
@@ -14,7 +14,5 @@ describe 'Content directory size' do
# `content` directory is included to the Omnibus package
# We want to make sure that the size of the directory is small enough
# to prevent accidental Omnibus pipeline failures.
- it 'is not too big' do
- is_expected.to be < maximum_size
- end
+ it { is_expected.to be < maximum_size }
end