diff options
author | Nick Schonning <nschonni@gmail.com> | 2023-02-19 20:46:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-20 02:46:00 +0100 |
commit | bd1d57c2303b7a5df1af749d8851c9364a044e77 (patch) | |
tree | ea47ed0f4686c482c846154660590d756f23ae1b /spec/workers | |
parent | dbc6d7b276aa1ccc085f76caa43cc091311af6b7 (diff) |
Autofix Rubocop RSpec/EmptyLineAfterSubject (#23719)
Diffstat (limited to 'spec/workers')
-rw-r--r-- | spec/workers/refollow_worker_spec.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/workers/refollow_worker_spec.rb b/spec/workers/refollow_worker_spec.rb index d9c2293b6..1dac15385 100644 --- a/spec/workers/refollow_worker_spec.rb +++ b/spec/workers/refollow_worker_spec.rb @@ -4,6 +4,7 @@ require 'rails_helper' describe RefollowWorker do subject { described_class.new } + let(:account) { Fabricate(:account, domain: 'example.org', protocol: :activitypub) } let(:alice) { Fabricate(:account, domain: nil, username: 'alice') } let(:bob) { Fabricate(:account, domain: nil, username: 'bob') } |