From e0e63b73ee906abea5e359e695bff4276e6c3276 Mon Sep 17 00:00:00 2001
From: Nick Schonning <nschonni@gmail.com>
Date: Sun, 19 Feb 2023 00:54:34 -0500
Subject: [PATCH] Autofix Rubocop RSpec/EmptyLineAfterHook (#23718)

---
 .rubocop_todo.yml                       | 7 -------
 spec/helpers/application_helper_spec.rb | 1 +
 2 files changed, 1 insertion(+), 7 deletions(-)

diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml
index e997478192..c3a62c2d99 100644
--- a/.rubocop_todo.yml
+++ b/.rubocop_todo.yml
@@ -825,13 +825,6 @@ RSpec/EmptyExampleGroup:
     - 'spec/models/web/setting_spec.rb'
     - 'spec/services/unmute_service_spec.rb'
 
-# Offense count: 1
-# This cop supports safe autocorrection (--autocorrect).
-# Configuration parameters: AllowConsecutiveOneLiners.
-RSpec/EmptyLineAfterHook:
-  Exclude:
-    - 'spec/helpers/application_helper_spec.rb'
-
 # Offense count: 19
 # This cop supports safe autocorrection (--autocorrect).
 RSpec/EmptyLineAfterSubject:
diff --git a/spec/helpers/application_helper_spec.rb b/spec/helpers/application_helper_spec.rb
index b335a5e45e..6502cfebf2 100644
--- a/spec/helpers/application_helper_spec.rb
+++ b/spec/helpers/application_helper_spec.rb
@@ -82,6 +82,7 @@ describe ApplicationHelper do
       before do
         allow(helper).to receive(:user_signed_in?).and_return(true)
       end
+
       it 'does not show landing strip' do
         expect(helper.show_landing_strip?).to eq false
       end
-- 
GitLab