diff options
author | Nick Schonning <nschonni@gmail.com> | 2023-02-19 23:24:14 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-20 13:24:14 +0900 |
commit | 4552685f6bd400666ec4058783eeabb11568e575 (patch) | |
tree | ab708e0d54b9309f96ef0e4d17e8afd32221c5c6 /spec/models/web | |
parent | 4ea1e0fceb0c0c5fee014a99f81f8f13a16f6dde (diff) |
Autofix Rubocop RSpec/LeadingSubject (#23670)
Diffstat (limited to 'spec/models/web')
-rw-r--r-- | spec/models/web/push_subscription_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/models/web/push_subscription_spec.rb b/spec/models/web/push_subscription_spec.rb index eeadbb71c..388154000 100644 --- a/spec/models/web/push_subscription_spec.rb +++ b/spec/models/web/push_subscription_spec.rb @@ -1,6 +1,8 @@ require 'rails_helper' RSpec.describe Web::PushSubscription, type: :model do + subject { described_class.new(data: data) } + let(:account) { Fabricate(:account) } let(:policy) { 'all' } @@ -19,8 +21,6 @@ RSpec.describe Web::PushSubscription, type: :model do } end - subject { described_class.new(data: data) } - describe '#pushable?' do let(:notification_type) { :mention } let(:notification) { Fabricate(:notification, account: account, type: notification_type) } |