Avoid validate: false save in expired poll create activity spec (#33367)

This commit is contained in:
Matt Jankowski 2024-12-20 08:34:05 -05:00 committed by GitHub
parent 344e2903b3
commit d2fbf42b0e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -993,9 +993,9 @@ RSpec.describe ActivityPub::Activity::Create do
context 'when a vote to an expired local poll' do
let(:poll) do
poll = Fabricate.build(:poll, options: %w(Yellow Blue), expires_at: 1.day.ago)
poll.save(validate: false)
poll
travel_to 2.days.ago do
Fabricate(:poll, options: %w(Yellow Blue), expires_at: 1.day.from_now)
end
end
let!(:local_status) { Fabricate(:status, poll: poll) }