diff options
author | Nick Schonning <nschonni@gmail.com> | 2023-02-18 17:10:19 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-19 07:10:19 +0900 |
commit | 3680e032b43e9701c0bc1f3ed5238e58cd6b7ac8 (patch) | |
tree | 5b43508887a079727af5c70d4b2ba2557acde7db /spec/controllers/instance_actors_controller_spec.rb | |
parent | 2177daeae92b77be6797ba8f2ab6ebe1e641e078 (diff) |
Autofix Rubocop RSpec/EmptyLineAfterFinalLet (#23707)
Diffstat (limited to 'spec/controllers/instance_actors_controller_spec.rb')
-rw-r--r-- | spec/controllers/instance_actors_controller_spec.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/spec/controllers/instance_actors_controller_spec.rb b/spec/controllers/instance_actors_controller_spec.rb index 833539a76..d6b4c793b 100644 --- a/spec/controllers/instance_actors_controller_spec.rb +++ b/spec/controllers/instance_actors_controller_spec.rb @@ -43,11 +43,13 @@ RSpec.describe InstanceActorsController, type: :controller do context 'without authorized fetch mode' do let(:authorized_fetch_mode) { false } + it_behaves_like 'shared behavior' end context 'with authorized fetch mode' do let(:authorized_fetch_mode) { true } + it_behaves_like 'shared behavior' end end |