Merge pull request #42226 from santib/fix-intermittent-test

Fix ActiveStorage intermittent test
This commit is contained in:
Eileen M. Uchitelle 2021-05-14 12:56:57 -04:00 committed by GitHub
commit 10d74dbe86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -655,9 +655,10 @@ class ActiveStorage::ManyAttachedTest < ActiveSupport::TestCase
@user.reload
racecar_blob = fixture_file_upload("racecar.jpg")
attachment_id = town_blob.attachments.find_by!(record: @user).id
@user.update(
highlights: [racecar_blob],
highlights_attachments_attributes: [{ id: town_blob.id, _destroy: true }]
highlights_attachments_attributes: [{ id: attachment_id, _destroy: true }]
)
assert @user.reload.highlights.attached?