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
diff options
context:
space:
mode:
authorMarcel Amirault <mamirault@gitlab.com>2022-06-06 08:44:00 +0300
committerMarcel Amirault <mamirault@gitlab.com>2022-06-06 08:44:00 +0300
commited77855b7fab8c2fd082b5626ef4fa8ad6889ca9 (patch)
tree4382c97a6762d96c9479f106dee99de10f465e8e
parent17f0114aeda00f837e76ed321fd42712d3ac3318 (diff)
parent2f434e49b9f17b8fa3f5e2ae715b286d15cb9cb9 (diff)
Merge branch 'eread/fix-implicit-subject-rubocop-offenses' into 'main'
Fix RSpec/ImplicitSubject RuboCop offenses See merge request gitlab-org/gitlab-docs!2766
-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