1
0
Fork 0
forked from gitea/nas

Use build where possible in fabricators (#25360)

This commit is contained in:
Matt Jankowski 2023-06-10 12:29:01 -04:00 committed by GitHub
parent c94bb9ba9a
commit 3a2a15c6ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
41 changed files with 58 additions and 58 deletions

View file

@ -2,6 +2,6 @@
Fabricator(:account_moderation_note) do
content 'MyText'
account
target_account { Fabricate(:account) }
account { Fabricate.build(:account) }
target_account { Fabricate.build(:account) }
end