0
0
Fork 0

Prepare the way for banning a bunch of usernames (#32856)

This commit is contained in:
Matt Jankowski 2024-11-12 10:43:55 -05:00 committed by GitHub
parent f5f6273d2b
commit 884bbf7ae2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 10 additions and 10 deletions

View file

@ -3,10 +3,10 @@
require 'rails_helper'
RSpec.describe Account::Interactions do
let(:account) { Fabricate(:account, username: 'account') }
let(:account) { Fabricate(:account) }
let(:account_id) { account.id }
let(:account_ids) { [account_id] }
let(:target_account) { Fabricate(:account, username: 'target') }
let(:target_account) { Fabricate(:account) }
let(:target_account_id) { target_account.id }
let(:target_account_ids) { [target_account_id] }