Reduce `RSpec/ExampleLength` in PostStatusService spec example (#29105)

This commit is contained in:
Matt Jankowski 2024-02-06 09:36:04 -05:00 committed by GitHub
parent 93a5b3f9df
commit 0df86d77fd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 7 deletions

View File

@ -228,13 +228,7 @@ RSpec.describe PostStatusService, type: :service do
subject.call(
account,
text: 'test status update',
media_ids: [
Fabricate(:media_attachment, account: account),
Fabricate(:media_attachment, account: account),
Fabricate(:media_attachment, account: account),
Fabricate(:media_attachment, account: account),
Fabricate(:media_attachment, account: account),
].map(&:id)
media_ids: Array.new(5) { Fabricate(:media_attachment, account: account) }.map(&:id)
)
end.to raise_error(
Mastodon::ValidationError,